summaryrefslogtreecommitdiff
path: root/asterisk.c
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2005-05-19 01:57:19 +0000
committerRussell Bryant <russell@russellbryant.com>2005-05-19 01:57:19 +0000
commit3c98814bb50132c41b093f82813cf5003e0995c8 (patch)
treeb006587477d09e5bc5e13f401a06e2e7c0e82dad /asterisk.c
parent53d655cf0af46985576959ddc42f95f014e44dc8 (diff)
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
Diffstat (limited to 'asterisk.c')
-rwxr-xr-xasterisk.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/asterisk.c b/asterisk.c
index 308519ba2..afdcf7ec6 100755
--- a/asterisk.c
+++ b/asterisk.c
@@ -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);