Author: Andres Miller <a1kmm@mware.virtualave.net>
[ircu2.10.12-pk.git] / ircd / m_trace.c
index f06aaa90b20e779a413f0dcb6923aa0823716f68..4fa9d8a502acb2e3213facd567728182c91aeca2 100644 (file)
  */
 #include "config.h"
 
-#if 0
-/*
- * No need to include handlers.h here the signatures must match
- * and we don't need to force a rebuild of all the handlers everytime
- * we add a new one to the list. --Bleep
- */
-#include "handlers.h"
-#endif /* 0 */
 #include "class.h"
 #include "client.h"
 #include "hash.h"
@@ -198,7 +190,7 @@ int m_trace(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
   /* report all direct connections */
 
   for (i = 0; i <= HighestFd; i++) {
-    unsigned int conClass;
+    const char *conClass;
 
     if (!(acptr = LocalClientArray[i])) /* Local Connection? */
       continue;
@@ -399,7 +391,7 @@ int ms_trace(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
   /* report all direct connections */
 
   for (i = 0; i <= HighestFd; i++) {
-    unsigned int conClass;
+    const char *conClass;
 
     if (!(acptr = LocalClientArray[i])) /* Local Connection? */
       continue;
@@ -598,7 +590,7 @@ int mo_trace(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
   /* report all direct connections */
 
   for (i = 0; i <= HighestFd; i++) {
-    unsigned int conClass;
+    const char *conClass;
 
     if (!(acptr = LocalClientArray[i])) /* Local Connection? */
       continue;