diff options
author | rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b <rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-05-03 14:06:59 +0000 |
---|---|---|
committer | rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b <rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-05-03 14:06:59 +0000 |
commit | ed4423dbabe13ff5c56118f45acf81e9be84f284 (patch) | |
tree | 7415037aae47bdc2e73a29648987629ff0d8b753 /process.c | |
parent | c5cb6ef9fe5faffab9630a2d2684e7373f32403f (diff) |
BUILD : 1.7.2 (81) BUGS : N/A NOTES : Always set the correct module name when executing module functions
git-svn-id: svn://svn.anope.org/anope/trunk@81 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@57 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'process.c')
-rw-r--r-- | process.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -235,7 +235,7 @@ void process() if (retVal == MOD_CONT) { current = m->next; while (current && current->func && retVal == MOD_CONT) { - mod_current_module_name = m->mod_name; + mod_current_module_name = current->mod_name; retVal = current->func(source, ac, av); mod_current_module_name = NULL; current = current->next; |