fixed some collisions with older commits
[ircu2.10.12-pk.git] / ircd / m_recover.c
index 8a507ce655fe8ca4ad6b7fdc34f11f4ab70654fc..51c9fae28b152a1c9ae101023b92936c10af7d07 100644 (file)
 #include "config.h"
 
 #include "client.h"
+#include "hash.h"
 #include "ircd.h"
 #include "ircd_log.h"
 #include "ircd_reply.h"
 #include "ircd_string.h"
 #include "msg.h"
+#include "numeric.h"
 #include "numnicks.h"
 #include "s_debug.h"
 #include "s_misc.h"
@@ -112,7 +114,7 @@ int m_recover(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
     return 0;
   }
 
-  if (!(victim = findUser(parv[1]))) {
+  if (!(victim = FindUser(parv[1]))) {
     send_reply(sptr, ERR_NOSUCHNICK, parv[1]);
     return 0;
   }