This fixes a case that r304773 and friends missed.
(closes issue #17317)
Reported by: var
Patches:
meetme-continue-on-l_16218.diff uploaded by var (license 1227)
Tested by: seanbright
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.2@316475
65c4cc65-6c06-0410-ace0-
fbb531ad65f3
res = ast_streamfile(chan, user->end_sound, chan->language);
res = ast_waitstream(chan, "");
}
+ if (confflags & CONFFLAG_KICK_CONTINUE) {
+ ret = 0;
+ } else {
+ ret = -1;
+ }
break;
}