summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Troy <dave@popvox.com>2008-06-23 13:24:20 -0400
committerDavid Troy <dave@popvox.com>2008-06-23 13:24:20 -0400
commit99eb501bde9ca6b62d2acd2415fef3f95792c121 (patch)
treeec653ef347096e2b6bdd5f8cfcc05bb9bde70dc1 /src
parent5331cbef3d31f213bf3d776b9c3c0666764b6e31 (diff)
parentf722ade2a59872cb8c62e81809ef4d83d11434e5 (diff)
downloadastmanproxy-99eb501bde9ca6b62d2acd2415fef3f95792c121.tar.gz
astmanproxy-99eb501bde9ca6b62d2acd2415fef3f95792c121.tar.xz
astmanproxy-99eb501bde9ca6b62d2acd2415fef3f95792c121.zip
Updated version info, updated copyrights, made some formatting changesgrafted
Diffstat (limited to 'src')
-rw-r--r--src/astmanproxy.c8
-rw-r--r--src/common.c2
-rw-r--r--src/config.c2
-rw-r--r--src/config_perms.c2
-rw-r--r--src/csv.c2
-rw-r--r--src/http.c2
-rw-r--r--src/include/ssl.h2
-rw-r--r--src/log.c2
-rw-r--r--src/proxyfunc.c2
-rw-r--r--src/ssl.c2
-rw-r--r--src/standard.c2
-rw-r--r--src/xml.c2
12 files changed, 15 insertions, 15 deletions
diff --git a/src/astmanproxy.c b/src/astmanproxy.c
index 59ec99f..5a61723 100644
--- a/src/astmanproxy.c
+++ b/src/astmanproxy.c
@@ -1,5 +1,5 @@
/* Asterisk Manager Proxy
- Copyright (c) 2005-2006 David C. Troy <dave@popvox.com>
+ Copyright (c) 2005-2008 David C. Troy <dave@popvox.com>
This program is free software, distributed under the terms of
the GNU General Public License.
@@ -123,7 +123,7 @@ void leave(int sig) {
void Version( void )
{
- printf("astmanproxy: Version %s, (C) David C. Troy 2005-2006\n", PROXY_VERSION);
+ printf("astmanproxy: Version %s, (C) David C. Troy 2005-2008\n", PROXY_VERSION);
return;
}
@@ -646,8 +646,8 @@ int main(int argc, char *argv[])
debugmsg("loaded handlers");
if (SetProcUID()) {
- fprintf(stderr,"Cannot set user/group! Check proc_user and proc_group config setting!\n");
- exit(1);
+ fprintf(stderr,"Cannot set user/group! Check proc_user and proc_group config setting!\n");
+ exit(1);
}
/* If we are not in debug mode, then fork to background */
diff --git a/src/common.c b/src/common.c
index b87d564..793f757 100644
--- a/src/common.c
+++ b/src/common.c
@@ -1,5 +1,5 @@
/* Asterisk Manager Proxy
- Copyright (c) 2005-2006 David C. Troy <dave@popvox.com>
+ Copyright (c) 2005-2008 David C. Troy <dave@popvox.com>
This program is free software, distributed under the terms of
the GNU General Public License.
diff --git a/src/config.c b/src/config.c
index 4a9ce2b..fa11e34 100644
--- a/src/config.c
+++ b/src/config.c
@@ -1,5 +1,5 @@
/* Asterisk Manager Proxy
- Copyright (c) 2005-2006 David C. Troy <dave@popvox.com>
+ Copyright (c) 2005-2008 David C. Troy <dave@popvox.com>
This program is free software, distributed under the terms of
the GNU General Public License.
diff --git a/src/config_perms.c b/src/config_perms.c
index 647e36b..0d42af5 100644
--- a/src/config_perms.c
+++ b/src/config_perms.c
@@ -1,5 +1,5 @@
/* Asterisk Manager Proxy
- Copyright (c) 2005-2006 David C. Troy <dave@popvox.com>
+ Copyright (c) 2005-2008 David C. Troy <dave@popvox.com>
This program is free software, distributed under the terms of
the GNU General Public License.
diff --git a/src/csv.c b/src/csv.c
index bcd9a88..1c32a65 100644
--- a/src/csv.c
+++ b/src/csv.c
@@ -1,5 +1,5 @@
/* Asterisk Manager Proxy
- Copyright (c) 2005-2006 David C. Troy <dave@popvox.com>
+ Copyright (c) 2005-2008 David C. Troy <dave@popvox.com>
This program is free software, distributed under the terms of
the GNU General Public License.
diff --git a/src/http.c b/src/http.c
index 3dc874f..9b2e76a 100644
--- a/src/http.c
+++ b/src/http.c
@@ -1,5 +1,5 @@
/* Asterisk Manager Proxy
- Copyright (c) 2005-2006 David C. Troy <dave@popvox.com>
+ Copyright (c) 2005-2008 David C. Troy <dave@popvox.com>
This program is free software, distributed under the terms of
the GNU General Public License.
diff --git a/src/include/ssl.h b/src/include/ssl.h
index 123bd43..32132ff 100644
--- a/src/include/ssl.h
+++ b/src/include/ssl.h
@@ -2,7 +2,7 @@
* ssl_addon: Encrypts the asterisk management interface
*
* Copyrights:
- * Copyright (C) 2005-2006, Tello Corporation, Inc.
+ * Copyright (C) 2005-2008, Tello Corporation, Inc.
*
* Contributors:
* Remco Treffkorn(Architect) and Mahesh Karoshi
diff --git a/src/log.c b/src/log.c
index fc86643..9570356 100644
--- a/src/log.c
+++ b/src/log.c
@@ -1,5 +1,5 @@
/* Asterisk Manager Proxy
- Copyright (c) 2005-2006 David C. Troy <dave@popvox.com>
+ Copyright (c) 2005-2008 David C. Troy <dave@popvox.com>
This program is free software, distributed under the terms of
the GNU General Public License.
diff --git a/src/proxyfunc.c b/src/proxyfunc.c
index 484da78..857c421 100644
--- a/src/proxyfunc.c
+++ b/src/proxyfunc.c
@@ -1,5 +1,5 @@
/* Asterisk Manager Proxy
- Copyright (c) 2005-2006 David C. Troy <dave@popvox.com>
+ Copyright (c) 2005-2008 David C. Troy <dave@popvox.com>
This program is free software, distributed under the terms of
the GNU General Public License.
diff --git a/src/ssl.c b/src/ssl.c
index 40115b1..80ca467 100644
--- a/src/ssl.c
+++ b/src/ssl.c
@@ -1,7 +1,7 @@
/*
* Asterisk -- An open source telephony toolkit.
*
- * Copyright (C) 2006, Tello Corporation, Inc.
+ * Copyright (C) 2008, Tello Corporation, Inc.
*
* Remco Treffkorn(Architect) and Mahesh Karoshi(Senior Software Developer)
*
diff --git a/src/standard.c b/src/standard.c
index f377bec..d03ef6f 100644
--- a/src/standard.c
+++ b/src/standard.c
@@ -1,5 +1,5 @@
/* Asterisk Manager Proxy
- Copyright (c) 2005-2006 David C. Troy <dave@popvox.com>
+ Copyright (c) 2005-2008 David C. Troy <dave@popvox.com>
This program is free software, distributed under the terms of
the GNU General Public License.
diff --git a/src/xml.c b/src/xml.c
index f068b73..e4cae8f 100644
--- a/src/xml.c
+++ b/src/xml.c
@@ -1,5 +1,5 @@
/* Asterisk Manager Proxy
- Copyright (c) 2005-2006 David C. Troy <dave@popvox.com>
+ Copyright (c) 2005-2008 David C. Troy <dave@popvox.com>
This program is free software, distributed under the terms of
the GNU General Public License.