diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-11-04 21:10:44 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-11-04 21:10:44 +0000 |
commit | 5b58824b6c5e34327a758419392f4f0490e5c921 (patch) | |
tree | cc8b15a4c22db1b42c151339f8d64b529d4f67d3 /src/commands/cmd_unloadmodule.cpp | |
parent | ad9715ffd1025cd6650dfd2208a71e3a0df96073 (diff) |
Aaaand, the rest of it
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8525 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/commands/cmd_unloadmodule.cpp')
-rw-r--r-- | src/commands/cmd_unloadmodule.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/cmd_unloadmodule.cpp b/src/commands/cmd_unloadmodule.cpp index 3c66d52e0..95098f134 100644 --- a/src/commands/cmd_unloadmodule.cpp +++ b/src/commands/cmd_unloadmodule.cpp @@ -30,7 +30,7 @@ CmdResult CommandUnloadmodule::Handle (const char** parameters, int, User *user) } else { - user->WriteServ("972 %s %s :Failed to unload module: %s",user->nick, parameters[0],ServerInstance->Modules->LastError()); + user->WriteServ("972 %s %s :%s",user->nick, parameters[0], ServerInstance->Modules->LastError().c_str()); return CMD_FAILURE; } |