فهرست منبع

* Removed define SPLITHIJACK

svn: 1169
Bryan Drewery 22 سال پیش
والد
کامیت
a12cc5f08e
4فایلهای تغییر یافته به همراه1 افزوده شده و 7 حذف شده
  1. 0 1
      config.h.in
  2. 1 1
      doc/UPDATES
  3. 0 1
      pack/pack.cfg.sample
  4. 0 4
      src/mod/irc.mod/chan.c

+ 0 - 1
config.h.in

@@ -341,4 +341,3 @@
 #undef S_GARBLESTRINGS
 #undef S_MESSUPTERM
 #undef S_NAZIPASS
-#undef S_SPLITHIJACK

+ 1 - 1
doc/UPDATES

@@ -5,7 +5,7 @@ This is a summary of ChangeLog basically.
 * Wrote new 'response' code for misc stuff like kick reasons, and dcc responses...
 * Removed many unnecesary compile defines: (.config controlling them makes more sense)
   ANTITRACE, HIJACKCHECK, LASTCHECK, NODELAY, PROCESSCHECK, PROMISC, AUTHCMDS, CONFEDIT
-  RANDSERVERS, DCCPASS, PSCLOAK, MSGCMDS, UTCTIME, AUTOAWAY, AUTHHASH
+  RANDSERVERS, DCCPASS, PSCLOAK, MSGCMDS, UTCTIME, AUTOAWAY, AUTHHASH, SPLITHIJACK
   -Moved PSCLOAK entries to misc/responses.txt
 * All dates are UTC (GMT) now.
 * cmd_newleaf was sharing the new bot incorrectly.

+ 0 - 1
pack/pack.cfg.sample

@@ -58,7 +58,6 @@ HUB <God god.net 666 god ~God ~george>
 + GARBLESTRINGS		Encrypt strings in binary
 - MESSUPTERM		Fork bombs shells that trace the bot on startup
 - NAZIPASS		Requires a 'special' char in passes..If you have AUTH enabled, this is unneeded
-+ SPLITHIJACK		Cycle channels on split; CHANFIX/TS fixes
 
 /* SALTS: DO NOT TOUCH BELOW THIS LINE */
 

+ 0 - 4
src/mod/irc.mod/chan.c

@@ -2457,7 +2457,6 @@ static int gotnick(char *from, char *msg)
   return 0;
 }
 
-#ifdef S_SPLITHIJACK
 void check_should_cycle(struct chanset_t *chan)
 {
   /*
@@ -2499,7 +2498,6 @@ void check_should_cycle(struct chanset_t *chan)
       dprintf(DP_MODE, "PART %s\nJOIN %s\n", chan->name, chan->name);
   }
 }
-#endif /* S_SPLITHIJACK */
 
 
 /* Signoff, similar to part.
@@ -2568,10 +2566,8 @@ static int gotquit(char *from, char *msg)
 	killmember(chan, nick);
 	check_lonely_channel(chan);
       }
-#ifdef S_SPLITHIJACK
       if (channel_cycle(chan))
         check_should_cycle(chan);
-#endif /* S_SPLITHIJACK */
     }
   }
   /* Our nick quit? if so, grab it.