[asterisk-commits] mmichelson: trunk r117367 - /trunk/main/config.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue May 20 21:20:31 CDT 2008
Author: mmichelson
Date: Tue May 20 21:20:31 2008
New Revision: 117367
URL: http://svn.digium.com/view/asterisk?view=rev&rev=117367
Log:
Be sure that we cache included files for each source file which loads
a configuration file. As it was, only the first did so. This led to
a problem if the included file was changed (but not the configuration
file which includes it) and the second source file attempted to reload
the configuration. It would not see that the included file had changed.
In this particular example, res_phoneprov and chan_sip both loaded
sip.conf, which included a file call sip.peers.conf. Since res_phoneprov
was the first to load sip.conf, only it cached the fact that sip.conf
included sip.peers.conf. If sip.peers.conf were changed and sip.conf were
not and a sip reload were issued (meaning that chan_sip attempts to
reload sip.conf only if it and its included files have changed) the changes
made to sip.peers.conf would not be seen and therefore no action would be
taken.
(closes issue #12693)
Reported by: marsosa
Modified:
trunk/main/config.c
Modified: trunk/main/config.c
URL: http://svn.digium.com/view/asterisk/trunk/main/config.c?view=diff&rev=117367&r1=117366&r2=117367
==============================================================================
--- trunk/main/config.c (original)
+++ trunk/main/config.c Tue May 20 21:20:31 2008
@@ -864,7 +864,7 @@
/* Find our cached entry for this configuration file */
AST_LIST_LOCK(&cfmtime_head);
AST_LIST_TRAVERSE(&cfmtime_head, cfmtime, list) {
- if (!strcmp(cfmtime->filename, configfile))
+ if (!strcmp(cfmtime->filename, configfile) && !strcmp(cfmtime->who_asked, who_asked))
break;
}
if (!cfmtime) {
More information about the asterisk-commits
mailing list