[asterisk-commits] russell: trunk r164272 - /trunk/pbx/pbx_dundi.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Dec 15 10:17:56 CST 2008
Author: russell
Date: Mon Dec 15 10:17:55 2008
New Revision: 164272
URL: http://svn.digium.com/view/asterisk?view=rev&rev=164272
Log:
When a reload is issued, always process the configuration for dundi.conf.
The reason is that a reload can be used to refresh DNS lookups for defined peers.
Even if the config file hasn't changed, we want to process it for that purpose.
(closes issue #13776)
Reported by: kombjuder
Modified:
trunk/pbx/pbx_dundi.c
Modified: trunk/pbx/pbx_dundi.c
URL: http://svn.digium.com/view/asterisk/trunk/pbx/pbx_dundi.c?view=diff&rev=164272&r1=164271&r2=164272
==============================================================================
--- trunk/pbx/pbx_dundi.c (original)
+++ trunk/pbx/pbx_dundi.c Mon Dec 15 10:17:55 2008
@@ -4585,7 +4585,7 @@
struct ast_variable *v;
char *cat;
int x;
- struct ast_flags config_flags = { reload ? CONFIG_FLAG_FILEUNCHANGED : 0 };
+ struct ast_flags config_flags = { 0 };
char hn[MAXHOSTNAMELEN] = "";
struct ast_hostent he;
struct hostent *hp;
@@ -4597,8 +4597,7 @@
if (!(cfg = ast_config_load(config_file, config_flags)) || cfg == CONFIG_STATUS_FILEINVALID) {
ast_log(LOG_ERROR, "Unable to load config %s\n", config_file);
return -1;
- } else if (cfg == CONFIG_STATUS_FILEUNCHANGED)
- return 0;
+ }
dundi_ttl = DUNDI_DEFAULT_TTL;
dundi_cache_time = DUNDI_DEFAULT_CACHE_TIME;
More information about the asterisk-commits
mailing list