mirror of
				https://github.com/asterisk/asterisk.git
				synced 2025-10-31 18:55:19 +00:00 
			
		
		
		
	make configuration variable const so they are not accidentally
modified. This requires casting the strings in asterisk.c when writing to them, so we do it through a macro to do it consistently. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@93603 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
		| @@ -320,7 +320,7 @@ int ast_monitor_stop(struct ast_channel *chan, int need_lock) | ||||
| 			const char *format = !strcasecmp(chan->monitor->format,"wav49") ? "WAV" : chan->monitor->format; | ||||
| 			char *name = chan->monitor->filename_base; | ||||
| 			int directory = strchr(name, '/') ? 1 : 0; | ||||
| 			char *dir = directory ? "" : ast_config_AST_MONITOR_DIR; | ||||
| 			const char *dir = directory ? "" : ast_config_AST_MONITOR_DIR; | ||||
| 			const char *execute, *execute_args; | ||||
|  | ||||
| 			/* Set the execute application */ | ||||
|   | ||||
		Reference in New Issue
	
	Block a user