summaryrefslogtreecommitdiff
path: root/asterisk.c
diff options
context:
space:
mode:
authorAnthony Minessale II <anthmct@yahoo.com>2004-06-15 18:48:07 +0000
committerAnthony Minessale II <anthmct@yahoo.com>2004-06-15 18:48:07 +0000
commit46303772e52a498e7a8438d70099b24318a111a1 (patch)
tree595488abd0d298ad23dd46b735ff8423e8efc69b /asterisk.c
parentd0e532a070c6d81a3bb05f330c7ae458f2d6f0e1 (diff)
Added an extra reload_logger() after *.so is loaded in case a custom config handler binded to logger.conf
to solve a chicken/egg issue where logger.conf is parsed before lodable modules are loaded. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3217 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'asterisk.c')
-rwxr-xr-xasterisk.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/asterisk.c b/asterisk.c
index 556f77605..f5da120df 100755
--- a/asterisk.c
+++ b/asterisk.c
@@ -1682,6 +1682,9 @@ int main(int argc, char *argv[])
printf(term_quit());
exit(1);
}
+ /* reload logger in case a custom config handler binded to logger.conf*/
+ reload_logger(0);
+
/* We might have the option of showing a console, but for now just
do nothing... */
if (option_console && !option_verbose)