mirror of
				https://github.com/asterisk/asterisk.git
				synced 2025-10-31 18:55:19 +00:00 
			
		
		
		
	Do a massive conversion for using the ast_verb() macro
(closes issue #10277, patches by mvanbaak) Basically, this changes ... if (option_verbose > 2) ast_verbose(VERBOSE_PREFIX_3, "Something\n"); to ... ast_verb(3, "Something\n"); git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@77299 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
		| @@ -904,8 +904,7 @@ static void parse_config(void) | ||||
| 	for (var = ast_variable_browse(cfg, "plc"); var; var = var->next) { | ||||
| 		if (!strcasecmp(var->name, "genericplc")) { | ||||
| 			g726tolin.useplc = ast_true(var->value) ? 1 : 0; | ||||
| 			if (option_verbose > 2) | ||||
| 				ast_verbose(VERBOSE_PREFIX_3 "codec_g726: %susing generic PLC\n", | ||||
| 			ast_verb(3, "codec_g726: %susing generic PLC\n", | ||||
| 					g726tolin.useplc ? "" : "not "); | ||||
| 		} | ||||
| 	} | ||||
|   | ||||
		Reference in New Issue
	
	Block a user