diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/inspircd.h | 2 | ||||
-rw-r--r-- | include/users.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/inspircd.h b/include/inspircd.h index 34ad92cb3..1dd734787 100644 --- a/include/inspircd.h +++ b/include/inspircd.h @@ -114,11 +114,9 @@ class InspIRCd }; /* prototypes */ -void force_nickchange(userrec* user,const char* newnick); void call_handler(std::string &commandname,char **parameters, int pcnt, userrec *user); bool is_valid_cmd(std::string &commandname, int pcnt, userrec * user); int loop_call(handlerfunc fn, char **parameters, int pcnt, userrec *u, int start, int end, int joins); -userrec* ReHashNick(char* Old, char* New); /* userrec optimization stuff */ void AddServerName(std::string servername); const char* FindServerNamePtr(std::string servername); diff --git a/include/users.h b/include/users.h index ee15f4845..b5532f1e2 100644 --- a/include/users.h +++ b/include/users.h @@ -353,5 +353,7 @@ void AddWhoWas(userrec* u); void AddClient(int socket, char* host, int port, bool iscached, char* ip); void FullConnectUser(userrec* user); void ConnectUser(userrec *user); +userrec* ReHashNick(char* Old, char* New); +void force_nickchange(userrec* user,const char* newnick); #endif |