summaryrefslogtreecommitdiff
path: root/main/udptl.c
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2006-12-06 07:28:56 +0000
committerRussell Bryant <russell@russellbryant.com>2006-12-06 07:28:56 +0000
commit17a2888d2ecce2be86805e0350fa68c6a2298b71 (patch)
tree27838547cec4633c54c59f30624fe0e640633c38 /main/udptl.c
parenta44e55a3f3efdc5dde27954dfcf5e1e5da579971 (diff)
Staticize one, and Constify a bunch of usage strings for CLI commands.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@48303 65c4cc65-6c06-0410-ace0-fbb531ad65f3
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";