dect
/
asterisk
Archived
13
0
Fork 0

Merged revisions 317480 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.8

........
  r317480 | russell | 2011-05-05 18:00:55 -0500 (Thu, 05 May 2011) | 8 lines
  
  Don't lose cdr_syslog config on a reload.
  
  (closes issue #18679)
  Reported by: enegaard
  Patches:
        issue18679_seanbright.patch uploaded by seanbright (license 71)
  Tested by: enegaard
........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@317481 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
russell 2011-05-05 23:02:11 +00:00
parent abb3190939
commit 3e4196a930
1 changed files with 4 additions and 2 deletions

View File

@ -264,8 +264,10 @@ static int reload(void)
return AST_MODULE_LOAD_DECLINE;
}
free_config();
res = load_config(1);
if ((res = load_config(1))) {
free_config();
}
AST_RWLIST_UNLOCK(&sinks);
return res ? AST_MODULE_LOAD_DECLINE : AST_MODULE_LOAD_SUCCESS;