Existing code would do a full device restart when "skinny reset device"
was entered at the CLI and do a reset when "skinny reset device restart"
entered.
........
Merged revisions 405893 from http://svn.asterisk.org/svn/asterisk/branches/12
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@405894
65c4cc65-6c06-0410-ace0-
fbb531ad65f3
AST_LIST_LOCK(&devices);
AST_LIST_TRAVERSE(&devices, d, list) {
- int fullrestart = 0;
+ int resetonly = 1;
if (!strcasecmp(a->argv[2], d->id) || !strcasecmp(a->argv[2], d->name) || !strcasecmp(a->argv[2], "all")) {
if (!(d->session))
continue;
if (a->argc == 4 && !strcasecmp(a->argv[3], "restart"))
- fullrestart = 1;
+ resetonly = 0;
- transmit_reset(d, fullrestart);
+ transmit_reset(d, resetonly);
}
}
AST_LIST_UNLOCK(&devices);