summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2006-12-06 07:23:32 +0000
committerRussell Bryant <russell@russellbryant.com>2006-12-06 07:23:32 +0000
commita44e55a3f3efdc5dde27954dfcf5e1e5da579971 (patch)
tree9ca92bfb0f05d9e2693784191062a83ff4cc5373 /main
parentb761fb83cdccff9a7c8e271529f78e6616736d1d (diff)
Constify a bunch of the usage strings for CLI commands.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@48302 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main')
-rw-r--r--main/asterisk.c26
-rw-r--r--main/cli.c14
2 files changed, 20 insertions, 20 deletions
diff --git a/main/asterisk.c b/main/asterisk.c
index b29bbd4c9..056f21c8d 100644
--- a/main/asterisk.c
+++ b/main/asterisk.c
@@ -289,7 +289,7 @@ struct thread_list_t {
static AST_LIST_HEAD_STATIC(thread_list, thread_list_t);
-static char show_threads_help[] =
+static const char show_threads_help[] =
"Usage: core show threads\n"
" List threads currently active in the system.\n";
@@ -483,7 +483,7 @@ static int handle_show_profile(int fd, int argc, char *argv[])
return 0;
}
-static char show_version_files_help[] =
+static const char show_version_files_help[] =
"Usage: core show file version [like <pattern>]\n"
" Lists the revision numbers of the files used to build this copy of Asterisk.\n"
" Optional regular expression pattern is used to filter the file list.\n";
@@ -1296,51 +1296,51 @@ static int remoteconsolehandler(char *s)
return ret;
}
-static char abort_halt_help[] =
+static const char abort_halt_help[] =
"Usage: abort shutdown\n"
" Causes Asterisk to abort an executing shutdown or restart, and resume normal\n"
" call operations.\n";
-static char shutdown_now_help[] =
+static const char shutdown_now_help[] =
"Usage: stop now\n"
" Shuts down a running Asterisk immediately, hanging up all active calls .\n";
-static char shutdown_gracefully_help[] =
+static const char shutdown_gracefully_help[] =
"Usage: stop gracefully\n"
" Causes Asterisk to not accept new calls, and exit when all\n"
" active calls have terminated normally.\n";
-static char shutdown_when_convenient_help[] =
+static const char shutdown_when_convenient_help[] =
"Usage: stop when convenient\n"
" Causes Asterisk to perform a shutdown when all active calls have ended.\n";
-static char restart_now_help[] =
+static const char restart_now_help[] =
"Usage: restart now\n"
" Causes Asterisk to hangup all calls and exec() itself performing a cold\n"
" restart.\n";
-static char restart_gracefully_help[] =
+static const char restart_gracefully_help[] =
"Usage: restart gracefully\n"
" Causes Asterisk to stop accepting new calls and exec() itself performing a cold\n"
" restart when all active calls have ended.\n";
-static char restart_when_convenient_help[] =
+static const char restart_when_convenient_help[] =
"Usage: restart when convenient\n"
" Causes Asterisk to perform a cold restart when all active calls have ended.\n";
-static char bang_help[] =
+static const char bang_help[] =
"Usage: !<command>\n"
" Executes a given shell command\n";
-static char show_warranty_help[] =
+static const char show_warranty_help[] =
"Usage: core show warranty\n"
" Shows the warranty (if any) for this copy of Asterisk.\n";
-static char show_license_help[] =
+static const char show_license_help[] =
"Usage: core show license\n"
" Shows the license(s) for this copy of Asterisk.\n";
-static char version_help[] =
+static const char version_help[] =
"Usage: core show version\n"
" Shows Asterisk version information.\n";
diff --git a/main/cli.c b/main/cli.c
index ae0eaac3d..cd2e40748 100644
--- a/main/cli.c
+++ b/main/cli.c
@@ -75,17 +75,17 @@ void ast_cli(int fd, char *fmt, ...)
static AST_LIST_HEAD_STATIC(helpers, ast_cli_entry);
-static char logger_mute_help[] =
+static const char logger_mute_help[] =
"Usage: logger mute\n"
" Disables logging output to the current console, making it possible to\n"
" gather information without being disturbed by scrolling lines.\n";
-static char softhangup_help[] =
+static const char softhangup_help[] =
"Usage: soft hangup <channel>\n"
" Request that a channel be hung up. The hangup takes effect\n"
" the next time the driver reads or writes from the channel\n";
-static char group_show_channels_help[] =
+static const char group_show_channels_help[] =
"Usage: group show channels [pattern]\n"
" Lists all currently active channels with channel group(s) specified.\n"
" Optional regular expression pattern is matched to group names for each\n"
@@ -561,21 +561,21 @@ static char *handle_chanlist(struct ast_cli_entry *e, int cmd, struct ast_cli_ar
#undef VERBOSE_FORMAT_STRING2
}
-static char showchan_help[] =
+static const char showchan_help[] =
"Usage: core show channel <channel>\n"
" Shows lots of information about the specified channel.\n";
-static char commandcomplete_help[] =
+static const char commandcomplete_help[] =
"Usage: _command complete \"<line>\" text state\n"
" This function is used internally to help with command completion and should.\n"
" never be called by the user directly.\n";
-static char commandnummatches_help[] =
+static const char commandnummatches_help[] =
"Usage: _command nummatches \"<line>\" text \n"
" This function is used internally to help with command completion and should.\n"
" never be called by the user directly.\n";
-static char commandmatchesarray_help[] =
+static const char commandmatchesarray_help[] =
"Usage: _command matchesarray \"<line>\" text \n"
" This function is used internally to help with command completion and should.\n"
" never be called by the user directly.\n";