]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Fix a problem with flag recognition.
authorBJ Weschke <bweschke@btwtech.com>
Tue, 22 May 2007 14:02:56 +0000 (14:02 +0000)
committerBJ Weschke <bweschke@btwtech.com>
Tue, 22 May 2007 14:02:56 +0000 (14:02 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@65408 65c4cc65-6c06-0410-ace0-fbb531ad65f3

apps/app_followme.c

index 3eedf2272fdcba939814efc21e61b7394288bb98..e068054ac42822397684cc6610e78b7d107d322f 100644 (file)
@@ -981,13 +981,13 @@ static int app_exec(struct ast_channel *chan, void *data)
                }
                ast_mutex_unlock(&f->lock);
 
-               if (targs.followmeflags.flags & FOLLOWMEFLAG_STATUSMSG
+               if (ast_test_flag(&targs.followmeflags, FOLLOWMEFLAG_STATUSMSG)
                        ast_stream_and_wait(chan, targs.statusprompt, chan->language, "");
 
                snprintf(namerecloc,sizeof(namerecloc),"%s/followme.%s",ast_config_AST_SPOOL_DIR,chan->uniqueid);
                duration = 5;
 
-               if (targs.followmeflags.flags & FOLLOWMEFLAG_RECORDNAME
+               if (ast_test_flag(&targs.followmeflags, FOLLOWMEFLAG_RECORDNAME)
                        if (ast_play_and_record(chan, "vm-rec-name", namerecloc, 5, "sln", &duration, 128, 0, NULL) < 0)
                                goto outrun;
 
@@ -1021,7 +1021,7 @@ static int app_exec(struct ast_channel *chan, void *data)
 
                if (targs.status != 100) {
                        ast_moh_stop(chan);
-                       if (targs.followmeflags.flags & FOLLOWMEFLAG_UNREACHABLEMSG
+                       if (ast_test_flag(&targs.followmeflags, FOLLOWMEFLAG_UNREACHABLEMSG)
                                ast_stream_and_wait(chan, targs.sorryprompt, chan->language, "");
                        res = 0;
                } else {