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
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;
}