[Asterisk-cvs] asterisk asterisk.c,1.172,1.173
markster
markster
Sun Aug 14 19:44:43 CDT 2005
Update of /usr/cvsroot/asterisk
In directory mongoose.digium.com:/tmp/cvs-serv32033
Modified Files:
asterisk.c
Log Message:
Reorder dnsmgr to before other modules (bug #4927)
Index: asterisk.c
===================================================================
RCS file: /usr/cvsroot/asterisk/asterisk.c,v
retrieving revision 1.172
retrieving revision 1.173
diff -u -d -r1.172 -r1.173
--- asterisk.c 26 Jul 2005 16:29:55 -0000 1.172
+++ asterisk.c 14 Aug 2005 23:47:40 -0000 1.173
@@ -2072,6 +2072,10 @@
printf(term_quit());
exit(1);
}
+ if (dnsmgr_init()) {
+ printf(term_quit());
+ exit(1);
+ }
/* load 'preload' modules, required for access to Realtime-mapped configuration files */
if (load_modules(1)) {
printf(term_quit());
@@ -2119,10 +2123,6 @@
printf(term_quit());
exit(1);
}
- if (dnsmgr_init()) {
- printf(term_quit());
- exit(1);
- }
#if 0
/* This should no longer be necessary */
/* sync cust config and reload some internals in case a custom config handler binded to them */
More information about the svn-commits
mailing list