*** VERSION 5.6.0 ***
[NeonServV5.git] / src / modules / NeonServ.mod / event_neonserv_ctcp.c
index 11d03e25ae99285247b454daf3c8b14b45b93d8f..abb7d664098ac7ae2c1e03a8c32d86b9f4d0f304 100644 (file)
@@ -1,4 +1,4 @@
-/* event_neonserv_ctcp.c - NeonServ v5.3
+/* event_neonserv_ctcp.c - NeonServ v5.6
  * Copyright (C) 2011-2012  Philipp Kreil (pk910)
  * 
  * This program is free software: you can redistribute it and/or modify
@@ -44,7 +44,7 @@ static void neonserv_event_chanctcp(struct UserNode *user, struct ChanNode *chan
         cache->chan = chan;
         cache->command = strdup(command);
         cache->text = (text ? strdup(text) : NULL);
-        get_userauth(user, neonserv_event_ctcp_nick_lookup, cache);
+        get_userauth(user, module_id, neonserv_event_ctcp_nick_lookup, cache);
     } else
         neonserv_event_ctcp_async1(client, user, chan, command, text);
 }
@@ -98,7 +98,7 @@ static void neonserv_event_ctcp_async1(struct ClientSocket *client, struct UserN
                 char banidBuf[20];
                 sprintf(nameBuf, "ban_%d", banid);
                 sprintf(banidBuf, "%d", banid);
-                timeq_add_name(nameBuf, duration, channel_ban_timeout, strdup(banidBuf));
+                timeq_add_name(nameBuf, duration, module_id, channel_ban_timeout, strdup(banidBuf));
             case 1: //KICKBAN
                 if(!banmask)
                     banmask = generate_banmask(user, banmaskBuf);