diff options
-rw-r--r-- | include/globals.h | 1 | ||||
-rw-r--r-- | include/helperfuncs.h | 2 | ||||
-rw-r--r-- | src/helperfuncs.cpp | 2 |
3 files changed, 2 insertions, 3 deletions
diff --git a/include/globals.h b/include/globals.h index 5b74aeaa1..e9f106b05 100644 --- a/include/globals.h +++ b/include/globals.h @@ -41,7 +41,6 @@ void WriteCommon(userrec *u, char* text, ...); void WriteCommonExcept(userrec *u, char* text, ...); void WriteWallOps(userrec *source, bool local_only, char* text, ...); int isnick(const char *n); -userrec* Find(std::string nick); chanrec* FindChan(const char* chan); void readfile(file_cache &F, const char* fname); diff --git a/include/helperfuncs.h b/include/helperfuncs.h index d99755035..90c23f776 100644 --- a/include/helperfuncs.h +++ b/include/helperfuncs.h @@ -60,7 +60,7 @@ void ServerNoticeAll(char* text, ...); void ServerPrivmsgAll(char* text, ...); void WriteWallOps(userrec *source, bool local_only, char* text, ...); void strlower(char *n); -userrec* Find(std::string nick); +userrec* Find(const std::string &nick); userrec* Find(const char* nick); chanrec* FindChan(const char* chan); long GetMaxBans(char* name); diff --git a/src/helperfuncs.cpp b/src/helperfuncs.cpp index ab9c3f46a..cbc52b4dd 100644 --- a/src/helperfuncs.cpp +++ b/src/helperfuncs.cpp @@ -1144,7 +1144,7 @@ void strlower(char *n) /* Find a user record by nickname and return a pointer to it */ -userrec* Find(std::string nick) +userrec* Find(const std::string &nick) { user_hash::iterator iter = clientlist.find(nick); |