aboutsummaryrefslogtreecommitdiffstats
path: root/main/asterisk.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-11-04 17:59:39 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-11-04 17:59:39 +0000
commit136de399d015525605e1e0114d56077c8c31dfd3 (patch)
tree57798f4a9cbd0dc7c303434c3cfe62daf19beddd /main/asterisk.c
parentd6aeab63add9c65a2ef076e0672e8cfb0c766975 (diff)
Really fix the "core set debug" and "core set verbose" CLI commands.
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@47195 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/asterisk.c')
-rw-r--r--main/asterisk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/asterisk.c b/main/asterisk.c
index 22ee7e9ab..4ca646a55 100644
--- a/main/asterisk.c
+++ b/main/asterisk.c
@@ -2142,9 +2142,9 @@ static void ast_remotecontrol(char * data)
pid = atoi(cpid);
else
pid = -1;
- snprintf(tmp, sizeof(tmp), "core verbose atleast %d", option_verbose);
+ snprintf(tmp, sizeof(tmp), "core set verbose atleast %d", option_verbose);
fdprint(ast_consock, tmp);
- snprintf(tmp, sizeof(tmp), "core debug atleast %d", option_debug);
+ snprintf(tmp, sizeof(tmp), "core set debug atleast %d", option_debug);
fdprint(ast_consock, tmp);
if (ast_opt_mute) {
snprintf(tmp, sizeof(tmp), "log and verbose output currently muted ('logger unmute' to unmute)");