summaryrefslogtreecommitdiff
path: root/channels/chan_skinny.c
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2006-12-06 07:35:31 +0000
committerRussell Bryant <russell@russellbryant.com>2006-12-06 07:35:31 +0000
commitec8591d04cba61952fa57156570764efefd8aef5 (patch)
treef2aa9bac0f6125d2ec1d6183d89b4b7dc7db1cac /channels/chan_skinny.c
parentaf870057c1034c4309283fc4e77c66c53b15af98 (diff)
Constify a bunch of usage strings for CLI commands.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@48306 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels/chan_skinny.c')
-rw-r--r--channels/chan_skinny.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/channels/chan_skinny.c b/channels/chan_skinny.c
index 951d9b8a3..e01590a42 100644
--- a/channels/chan_skinny.c
+++ b/channels/chan_skinny.c
@@ -1947,23 +1947,23 @@ static int skinny_show_lines(int fd, int argc, char *argv[])
return RESULT_SUCCESS;
}
-static char show_devices_usage[] =
+static const char show_devices_usage[] =
"Usage: skinny show devices\n"
" Lists all devices known to the Skinny subsystem.\n";
-static char show_lines_usage[] =
+static const char show_lines_usage[] =
"Usage: skinny show lines\n"
" Lists all lines known to the Skinny subsystem.\n";
-static char debug_usage[] =
+static const char debug_usage[] =
"Usage: skinny set debug\n"
" Enables dumping of Skinny packets for debugging purposes\n";
-static char no_debug_usage[] =
+static const char no_debug_usage[] =
"Usage: skinny set debug off\n"
" Disables dumping of Skinny packets for debugging purposes\n";
-static char reset_usage[] =
+static const char reset_usage[] =
"Usage: skinny reset <DeviceId|all> [restart]\n"
" Causes a Skinny device to reset itself, optionally with a full restart\n";