mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-19 19:20:35 +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:
@@ -507,8 +507,7 @@ int iax_provision_reload(void)
|
||||
if (strcasecmp(cat, "general")) {
|
||||
iax_process_template(cfg, cat, found ? "default" : NULL);
|
||||
found++;
|
||||
if (option_verbose > 2)
|
||||
ast_verbose(VERBOSE_PREFIX_3 "Loaded provisioning template '%s'\n", cat);
|
||||
ast_verb(3, "Loaded provisioning template '%s'\n", cat);
|
||||
}
|
||||
cat = ast_category_browse(cfg, cat);
|
||||
}
|
||||
|
Reference in New Issue
Block a user