aboutsummaryrefslogtreecommitdiffstats
path: root/res/res_crypto.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-12-06 07:31:28 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-12-06 07:31:28 +0000
commit65590151936edd0a1db4919bce301fa5225bea23 (patch)
treec3963439b13561c2e5461fce801ed39b8b6bb6e8 /res/res_crypto.c
parent0a0c8869de31bb9f76c2baecf48917c0824895c4 (diff)
Constify a bunch of usage strings for CLI commands.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@48305 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'res/res_crypto.c')
-rw-r--r--res/res_crypto.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/res/res_crypto.c b/res/res_crypto.c
index b5035b1c5..888564ea8 100644
--- a/res/res_crypto.c
+++ b/res/res_crypto.c
@@ -555,11 +555,11 @@ static int init_keys(int fd, int argc, char *argv[])
return RESULT_SUCCESS;
}
-static char show_key_usage[] =
+static const char show_key_usage[] =
"Usage: keys show\n"
" Displays information about RSA keys known by Asterisk\n";
-static char init_keys_usage[] =
+static const char init_keys_usage[] =
"Usage: keys init\n"
" Initializes private keys (by reading in pass code from the user)\n";