aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_sha256.cpp
diff options
context:
space:
mode:
authorGravatar brain2008-02-13 18:22:19 +0000
committerGravatar brain2008-02-13 18:22:19 +0000
commitbfaf7e3b27981a5144faba6d17c6e29fac735dbb (patch)
treebdec845abe8e5fcf617657f1e2473aed1a8fdec6 /src/modules/m_sha256.cpp
parentThis doesn't need to be inside the loop. There is only one IP for (potentiall... (diff)
downloadinspircd++-bfaf7e3b27981a5144faba6d17c6e29fac735dbb.tar.gz
inspircd++-bfaf7e3b27981a5144faba6d17c6e29fac735dbb.tar.bz2
inspircd++-bfaf7e3b27981a5144faba6d17c6e29fac735dbb.zip
Commit patch from danieldg that makes a ton of stuff const-safe for latest warn-happy trigger-happy gcc4 (thanks)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8922 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_sha256.cpp')
-rw-r--r--src/modules/m_sha256.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_sha256.cpp b/src/modules/m_sha256.cpp
index febfd8820..b80e3d5bb 100644
--- a/src/modules/m_sha256.cpp
+++ b/src/modules/m_sha256.cpp
@@ -271,7 +271,7 @@ class ModuleSHA256 : public Module
}
- virtual char* OnRequest(Request* request)
+ virtual const char* OnRequest(Request* request)
{
HashRequest* SHA = (HashRequest*)request;
if (strcmp("KEY", request->GetId()) == 0)