diff options
| author | 2008-02-13 19:23:01 +0000 | |
|---|---|---|
| committer | 2008-02-13 19:23:01 +0000 | |
| commit | 0fed3a06d0f889dc9429f74fcfff9398d2f29add (patch) | |
| tree | 75faf8d3475f23e45eaad434fa1f5cb4966678bb /src/modules/extra/m_ziplink.cpp | |
| parent | Fix my compile error. (diff) | |
Patch provided by danieldg for fixing 3-figure versions in configure
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8926 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/extra/m_ziplink.cpp')
| -rw-r--r-- | src/modules/extra/m_ziplink.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/extra/m_ziplink.cpp b/src/modules/extra/m_ziplink.cpp index 83131fcb3..57e14a5be 100644 --- a/src/modules/extra/m_ziplink.cpp +++ b/src/modules/extra/m_ziplink.cpp @@ -181,10 +181,10 @@ class ModuleZLib : public Module else if (strcmp("IS_HOOK", request->GetId()) == 0) { /* Attach to an inspsocket */ - char* ret = "OK"; + const char* ret = "OK"; try { - ret = ServerInstance->Config->AddIOHook((Module*)this, (BufferedSocket*)ISR->Sock) ? (char*)"OK" : NULL; + ret = ServerInstance->Config->AddIOHook((Module*)this, (BufferedSocket*)ISR->Sock) ? "OK" : NULL; } catch (ModuleException& e) { @@ -195,7 +195,7 @@ class ModuleZLib : public Module else if (strcmp("IS_UNHOOK", request->GetId()) == 0) { /* Detatch from an inspsocket */ - return ServerInstance->Config->DelIOHook((BufferedSocket*)ISR->Sock) ? (char*)"OK" : NULL; + return ServerInstance->Config->DelIOHook((BufferedSocket*)ISR->Sock) ? "OK" : NULL; } else if (strcmp("IS_HSDONE", request->GetId()) == 0) { |
