aboutsummaryrefslogtreecommitdiffstats
path: root/main/udptl.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-12-06 07:28:56 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-12-06 07:28:56 +0000
commit0a0c8869de31bb9f76c2baecf48917c0824895c4 (patch)
tree27838547cec4633c54c59f30624fe0e640633c38 /main/udptl.c
parent8048b9c7182af432df0b85927e96fe6b797be420 (diff)
Staticize one, and Constify a bunch of usage strings for CLI commands.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@48303 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/udptl.c')
-rw-r--r--main/udptl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/udptl.c b/main/udptl.c
index 91a626c8f..42594af91 100644
--- a/main/udptl.c
+++ b/main/udptl.c
@@ -1153,11 +1153,11 @@ static int udptl_nodebug(int fd, int argc, char *argv[])
return RESULT_SUCCESS;
}
-static char debug_usage[] =
+static const char debug_usage[] =
"Usage: udptl debug [ip host[:port]]\n"
" Enable dumping of all UDPTL packets to and from host.\n";
-static char nodebug_usage[] =
+static const char nodebug_usage[] =
"Usage: udptl debug off\n"
" Disable all UDPTL debugging\n";