mirror of
				https://github.com/asterisk/asterisk.git
				synced 2025-10-31 02:37:10 +00:00 
			
		
		
		
	Fix beep logic error (bug #3888)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5299 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
		| @@ -844,7 +844,7 @@ zapretry: | ||||
| 	if (!firstpass && !(confflags & CONFFLAG_MONITOR) && !(confflags & CONFFLAG_ADMIN)) { | ||||
| 		firstpass = 1; | ||||
| 		if (!(confflags & CONFFLAG_QUIET)) | ||||
| 			if ((confflags & CONFFLAG_WAITMARKED) && conf->markedusers >= 1) | ||||
| 			if (!(confflags & CONFFLAG_WAITMARKED) || (conf->markedusers >= 1)) | ||||
| 				conf_play(chan, conf, ENTER); | ||||
| 	} | ||||
| 	conf_flush(fd); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user