Index: asterisk.c =================================================================== RCS file: /usr/cvsroot/asterisk/asterisk.c,v retrieving revision 1.139 diff -u -r1.139 asterisk.c --- asterisk.c 9 Feb 2005 00:13:52 -0000 1.139 +++ asterisk.c 9 Feb 2005 12:06:53 -0000 @@ -1410,9 +1410,9 @@ pid = atoi(cpid); else pid = -1; - snprintf(tmp, sizeof(tmp), "set verbose atleast %d", option_verbose); + snprintf(tmp, sizeof(tmp), "set verbose at least %d", option_verbose); fdprint(ast_consock, tmp); - snprintf(tmp, sizeof(tmp), "set debug atleast %d", option_debug); + snprintf(tmp, sizeof(tmp), "set debug at least %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; @@ -1552,7 +1552,7 @@ /* whether or not to support #exec in config files */ } else if (!strcasecmp(v->name, "execincludes")) { option_exec_includes = ast_true(v->value); - /* debug level (-v at startup) */ + /* debug level (-d at startup) */ } else if (!strcasecmp(v->name, "debug")) { option_debug = 0; if (sscanf(v->value, "%d", &option_debug) != 1) {