summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2008-05-20 15:34:10 +0000
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2008-05-20 15:34:10 +0000
commitba0d375f7a28b529770791f4568d787aca6dcf96 (patch)
tree2ca398ff1bf8137685df130d7071d804916a6b7a /include
parent71896ce9be72805901b1926ce786cab36a34785a (diff)
char -> std::string conversion
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9777 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r--include/inspircd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/inspircd.h b/include/inspircd.h
index dba38d272..e729a0b2a 100644
--- a/include/inspircd.h
+++ b/include/inspircd.h
@@ -767,7 +767,7 @@ class CoreExport InspIRCd : public classbase
* @param hashtype The hash from the config file
* @return 0 if the strings match, 1 or -1 if they do not
*/
- int PassCompare(Extensible* ex, const char* data,const char* input, const char* hashtype);
+ int PassCompare(Extensible* ex, const std::string &data, const std::string &input, const std::string &hashtype);
/** Check if a given server is a uline.
* An empty string returns true, this is by design.