diff options
author | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-11-07 23:52:29 +0000 |
---|---|---|
committer | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-11-07 23:52:29 +0000 |
commit | 95774907e1d239dc9261f19b58a6044598ae078c (patch) | |
tree | d24106fd72b34f9904d8dd1868899926f54c4a7c /src/commands.c | |
parent | 67b7ab7af642b5c35521562ba44c8c9f94ab5c0c (diff) |
Remove createModule stuff.. instead, pass string to loadModule. This still isn't compiling, but it's yet another step closer.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1572 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/commands.c')
-rw-r--r-- | src/commands.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands.c b/src/commands.c index 4c827458d..c78bce52f 100644 --- a/src/commands.c +++ b/src/commands.c @@ -166,7 +166,7 @@ void do_help_cmd(char *service, User * u, Command * c, const char *cmd) int cont = MOD_CONT; const char *p1 = NULL, *p2 = NULL, *p3 = NULL, *p4 = NULL; Module *calling_module = mod_current_module; - char *calling_module_name = mod_current_module_name; + const char *calling_module_name = mod_current_module_name; for (current = c; (current) && (cont == MOD_CONT); current = current->next) { |