projects
/
asterisk/asterisk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
420acb8
)
Fix an off by one error that causes a crash.
author
Russell Bryant
<russell@russellbryant.com>
Thu, 13 May 2010 15:36:12 +0000
(15:36 +0000)
committer
Russell Bryant
<russell@russellbryant.com>
Thu, 13 May 2010 15:36:12 +0000
(15:36 +0000)
Thanks to Raymond Burke for pointing it out.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@262897
65c4cc65
-6c06-0410-ace0-
fbb531ad65f3
channels/chan_console.c
patch
|
blob
|
history
diff --git
a/channels/chan_console.c
b/channels/chan_console.c
index
6c566e9
..
9d68e9f
100644
(file)
--- a/
channels/chan_console.c
+++ b/
channels/chan_console.c
@@
-1196,7
+1196,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;
}