From: Russell Bryant Date: Thu, 13 May 2010 15:36:41 +0000 (+0000) Subject: Merged revisions 262897 via svnmerge from X-Git-Tag: 1.6.2.9-rc1~2^2~48 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e389a23550c3b2f5041e8326ee62830f44adfb6b;p=thirdparty%2Fasterisk.git Merged revisions 262897 via svnmerge from https://origsvn.digium.com/svn/asterisk/trunk ........ r262897 | russell | 2010-05-13 10:36:12 -0500 (Thu, 13 May 2010) | 4 lines Fix an off by one error that causes a crash. Thanks to Raymond Burke for pointing it out. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.2@262898 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_console.c b/channels/chan_console.c index 9f212ff6f7..4b278412a4 100644 --- a/channels/chan_console.c +++ b/channels/chan_console.c @@ -1199,7 +1199,7 @@ static char *cli_console_active(struct ast_cli_entry *e, int cmd, struct ast_cli return CLI_SUCCESS; } - if (!(pvt = find_pvt(a->argv[e->args]))) { + if (!(pvt = find_pvt(a->argv[e->args - 1]))) { ast_cli(a->fd, "Could not find a device called '%s'.\n", a->argv[e->args]); return CLI_FAILURE; }