aboutsummaryrefslogtreecommitdiffstats
path: root/channels/chan_oss.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-12-06 07:35:31 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-12-06 07:35:31 +0000
commit4299f89c9b8ff9391ad0b111b008bbe6a45d3cf5 (patch)
treef2aa9bac0f6125d2ec1d6183d89b4b7dc7db1cac /channels/chan_oss.c
parent65590151936edd0a1db4919bce301fa5225bea23 (diff)
Constify a bunch of usage strings for CLI commands.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@48306 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels/chan_oss.c')
-rw-r--r--channels/chan_oss.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/channels/chan_oss.c b/channels/chan_oss.c
index cec9f565a..9f2c3026f 100644
--- a/channels/chan_oss.c
+++ b/channels/chan_oss.c
@@ -1336,7 +1336,7 @@ static int console_transfer(int fd, int argc, char *argv[])
return RESULT_SUCCESS;
}
-static char transfer_usage[] =
+static const char transfer_usage[] =
"Usage: console transfer <extension>[@context]\n"
" Transfers the currently connected call to the given extension (and\n"
"context if specified)\n";
@@ -1363,7 +1363,7 @@ static int console_active(int fd, int argc, char *argv[])
return RESULT_SUCCESS;
}
-static char active_usage[] =
+static const char active_usage[] =
"Usage: console active [device]\n"
" If used without a parameter, displays which device is the current\n"
"console. If a device is specified, the console sound device is changed to\n"