summaryrefslogtreecommitdiff
path: root/res/res_jabber.c
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2006-12-06 07:31:28 +0000
committerRussell Bryant <russell@russellbryant.com>2006-12-06 07:31:28 +0000
commitaf870057c1034c4309283fc4e77c66c53b15af98 (patch)
treec3963439b13561c2e5461fce801ed39b8b6bb6e8 /res/res_jabber.c
parent17a2888d2ecce2be86805e0350fa68c6a2298b71 (diff)
Constify a bunch of usage strings for CLI commands.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@48305 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res/res_jabber.c')
-rw-r--r--res/res_jabber.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/res/res_jabber.c b/res/res_jabber.c
index fcf145659..75bf1fef2 100644
--- a/res/res_jabber.c
+++ b/res/res_jabber.c
@@ -98,19 +98,19 @@ static int aji_register_transport(void *data, ikspak *pak);
static int aji_register_transport2(void *data, ikspak *pak);
*/
-static char debug_usage[] =
+static const char debug_usage[] =
"Usage: jabber debug\n"
" Enables dumping of Jabber packets for debugging purposes.\n";
-static char no_debug_usage[] =
+static const char no_debug_usage[] =
"Usage: jabber debug off\n"
" Disables dumping of Jabber packets for debugging purposes.\n";
-static char reload_usage[] =
+static const char reload_usage[] =
"Usage: jabber reload\n"
" Enables reloading of Jabber module.\n";
-static char test_usage[] =
+static const char test_usage[] =
"Usage: jabber test [client]\n"
" Sends test message for debugging purposes. A specific client\n"
" as configured in jabber.conf can be optionally specified.\n";