]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Merged revisions 61704 via svnmerge from
authorJason Parker <jparker@digium.com>
Fri, 20 Apr 2007 21:15:29 +0000 (21:15 +0000)
committerJason Parker <jparker@digium.com>
Fri, 20 Apr 2007 21:15:29 +0000 (21:15 +0000)
https://origsvn.digium.com/svn/asterisk/branches/1.2

........
r61704 | qwell | 2007-04-20 16:14:27 -0500 (Fri, 20 Apr 2007) | 4 lines

Fix an issue that I noticed while looking over issue 9571.

The reload timestamp was getting set after reloading the built-in stuff, and before the modules.

........

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@61705 65c4cc65-6c06-0410-ace0-fbb531ad65f3

main/loader.c

index 6717a46992808dee46e0e6c8a352413b7204219d..d0fb2e33a3d44a8ae395c77d9c93b56b105584c1 100644 (file)
@@ -530,6 +530,7 @@ int ast_module_reload(const char *name)
                ast_verbose("The previous reload command didn't finish yet\n");
                return -1;      /* reload already in progress */
        }
+       ast_lastreloadtime = time(NULL);
 
        /* Call "predefined" reload here first */
        for (i = 0; reload_classes[i].name; i++) {
@@ -538,7 +539,6 @@ int ast_module_reload(const char *name)
                        res = 2;        /* found and reloaded */
                }
        }
-       ast_lastreloadtime = time(NULL);
 
        if (name && res) {
                ast_mutex_unlock(&reloadlock);