From: Tilghman Lesher Date: Thu, 13 Nov 2008 19:10:28 +0000 (+0000) Subject: Command offsets were not changed correctly when the command syntax for X-Git-Tag: 1.6.2.0-beta1~868 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=85c6ae76ab489a8fc97ec5f40142bb8263a7aa78;p=thirdparty%2Fasterisk.git Command offsets were not changed correctly when the command syntax for 'pri set debug' was changed from 'pri debug'. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@156647 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_dahdi.c b/channels/chan_dahdi.c index f36db2ce19..c975a1eea7 100644 --- a/channels/chan_dahdi.c +++ b/channels/chan_dahdi.c @@ -11806,12 +11806,12 @@ static char *handle_pri_debug(struct ast_cli_entry *e, int cmd, struct ast_cli_a return CLI_SHOWUSAGE; } - if (!strcasecmp(a->argv[4], "on")) { + if (!strcasecmp(a->argv[3], "on")) { level = 1; - } else if (!strcasecmp(a->argv[4], "off")) { + } else if (!strcasecmp(a->argv[3], "off")) { level = 0; } else { - level = atoi(a->argv[4]); + level = atoi(a->argv[3]); } span = atoi(a->argv[5]); if ((span < 1) || (span > NUM_SPANS)) {