Skip to content
Snippets Groups Projects
Commit a45b2019 authored by Kevin P. Fleming's avatar Kevin P. Fleming
Browse files

issue #5752

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7102 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 6bfdf6f4
No related branches found
No related tags found
No related merge requests found
2005-11-15 Kevin P. Fleming <kpfleming@limerick.digium.com>
* apps/app_playback.c (playback_exec): use correct logic tests for options (issue #5752)
* apps/app_disa.c (disa_exec): use standard arg parsing routines (issue #5736)
2005-11-15 Russell Bryant <russell@digium.com>
......
......@@ -99,9 +99,9 @@ static int playback_exec(struct ast_channel *chan, void *data)
AST_STANDARD_APP_ARGS(args, tmp);
if (args.options) {
if (!strcasestr(args.options, "skip"))
if (strcasestr(args.options, "skip"))
option_skip = 1;
if (!strcasestr(args.options, "noanswer"))
if (strcasestr(args.options, "noanswer"))
option_noanswer = 1;
if (strchr(args.options, 'j'))
priority_jump = 1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment