Make sure we give the linkset number, not the offset in the linksets array

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@46466 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.6.0
Matthew Fredrickson 19 years ago
parent aadccc10b8
commit f171dabffe

@ -8759,7 +8759,7 @@ static void zt_ss7_message(struct ss7 *ss7, char *s)
if (linksets[i].ss7 == ss7)
break;
ast_verbose("[%d] %s", i, s);
ast_verbose("[%d] %s", i+1, s);
}
static void zt_ss7_error(struct ss7 *ss7, char *s)
@ -8770,7 +8770,7 @@ static void zt_ss7_error(struct ss7 *ss7, char *s)
if (linksets[i].ss7 == ss7)
break;
ast_log(LOG_ERROR, "[%d] %s", i, s);
ast_log(LOG_ERROR, "[%d] %s", i+1, s);
}
#endif /* HAVE_SS7 */

Loading…
Cancel
Save