]> jfr.im git - irc/quakenet/newserv.git/blobdiff - chanfix/chanfix.c
Remove test #ifs around the GL commands.
[irc/quakenet/newserv.git] / chanfix / chanfix.c
index 31698d94106e3eaf4801d06d32788787d7511625..9c8c93bcd84d37ca2d12de22a3efd38354c151b1 100644 (file)
@@ -679,7 +679,6 @@ void cfsched_dosample(void *arg) {
   channel *cp;
   chanindex *cip;
   nick *np;
-  chanfix *cf;
   regop *ro, *roh;
   struct timeval start;
   struct timeval end;
@@ -696,7 +695,6 @@ void cfsched_dosample(void *arg) {
 
   for (i=0; i<CHANNELHASHSIZE; i++) {
     for (cip=chantable[i]; cip; cip=cip->next) {
-      cf = (chanfix*)cip->exts[cfext];
       cp = cip->channel;
 
       if (!cp || cp->users->totalusers < CFMINUSERS)
@@ -706,6 +704,9 @@ void cfsched_dosample(void *arg) {
         if ((cp->users->content[a] != nouser) && (cp->users->content[a] & CUMODE_OP)) {
           np = getnickbynumeric(cp->users->content[a]);
 
+          if (np)
+            continue;
+
 #if !CFDEBUG
           if (IsService(np))
             continue;