mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-15 22:38:08 +00:00
add 'dontwarn' option to asterisk.conf to appease the whining masses :p (bug #4320)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5723 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -88,6 +88,7 @@ int option_overrideconfig = 0;
|
||||
int option_reconnect = 0;
|
||||
int option_transcode_slin = 1;
|
||||
int option_maxcalls = 0;
|
||||
int option_dontwarn = 0;
|
||||
int fully_booted = 0;
|
||||
char record_cache_dir[AST_CACHE_DIR_LEN] = AST_TMP_DIR;
|
||||
char debug_filename[AST_FILENAME_MAX] = "";
|
||||
@@ -1647,6 +1648,9 @@ static void ast_readconfig(void) {
|
||||
/* Disable ANSI colors for console (-c at startup) */
|
||||
} else if (!strcasecmp(v->name, "nocolor")) {
|
||||
option_nocolor = ast_true(v->value);
|
||||
/* Disable some usage warnings for picky people :p */
|
||||
} else if (!strcasecmp(v->name, "dontwarn")) {
|
||||
option_dontwarn = ast_true(v->value);
|
||||
/* Dump core in case of crash (-g) */
|
||||
} else if (!strcasecmp(v->name, "dumpcore")) {
|
||||
option_dumpcore = ast_true(v->value);
|
||||
|
||||
Reference in New Issue
Block a user