aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_authenticate.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2009-06-07 14:55:51 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2009-06-07 14:55:51 +0000
commitf63398715ec35c4e40f2afb7400d82fe32ae321c (patch)
tree2042818ecf72a633218fb22c72ba5e69ba659df3 /apps/app_authenticate.c
parent08f4ed038a889b376dcd0cd7d5a4c0a170cba89a (diff)
Global var cleanup - constification and removing unused vars.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@199479 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_authenticate.c')
-rw-r--r--apps/app_authenticate.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/app_authenticate.c b/apps/app_authenticate.c
index 19570255c..416ea432d 100644
--- a/apps/app_authenticate.c
+++ b/apps/app_authenticate.c
@@ -43,7 +43,7 @@ enum {
OPT_DATABASE = (1 << 1),
OPT_MULTIPLE = (1 << 3),
OPT_REMOVE = (1 << 4),
-} auth_option_flags;
+};
AST_APP_OPTIONS(auth_app_options, {
AST_APP_OPTION('a', OPT_ACCOUNT),
@@ -53,7 +53,7 @@ AST_APP_OPTIONS(auth_app_options, {
});
-static char *app = "Authenticate";
+static const char app[] = "Authenticate";
/*** DOCUMENTATION
<application name="Authenticate" language="en_US">
<synopsis>