summaryrefslogtreecommitdiff
path: root/asterisk.c
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2004-12-29 07:46:10 +0000
committerMark Spencer <markster@digium.com>2004-12-29 07:46:10 +0000
commitf19f4411e106e31e6ce56fda9399b081e555ed9d (patch)
treed5ef0a042289d1f96f9e87e5a6a997225e2a82ab /asterisk.c
parent6884bd975821bc7f37ffb45418f5243c736068bd (diff)
Fix additional typos (bug #3162)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4581 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'asterisk.c')
-rwxr-xr-xasterisk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/asterisk.c b/asterisk.c
index 94dff32ad..76e98b319 100755
--- a/asterisk.c
+++ b/asterisk.c
@@ -1410,9 +1410,9 @@ static void ast_remotecontrol(char * data)
pid = atoi(cpid);
else
pid = -1;
- snprintf(tmp, sizeof(tmp), "set verbose at least %d", option_verbose);
+ snprintf(tmp, sizeof(tmp), "set verbose atleast %d", option_verbose);
fdprint(ast_consock, tmp);
- snprintf(tmp, sizeof(tmp), "set debug at least %d", option_debug);
+ snprintf(tmp, sizeof(tmp), "set debug atleast %d", option_debug);
fdprint(ast_consock, tmp);
ast_verbose("Connected to Asterisk %s currently running on %s (pid = %d)\n", version, hostname, pid);
remotehostname = hostname;