From 85c6ae76ab489a8fc97ec5f40142bb8263a7aa78 Mon Sep 17 00:00:00 2001 From: Tilghman Lesher <tilghman@meg.abyt.es> Date: Thu, 13 Nov 2008 19:10:28 +0000 Subject: [PATCH] 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 --- channels/chan_dahdi.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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)) { -- GitLab