Przeglądaj źródła

Merge branch 'maint'

* maint:
  Fix +take to work
Bryan Drewery 10 lat temu
rodzic
commit
90a9621a50
2 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 0
      doc/UPDATES.md
  2. 0 1
      src/mod/irc.mod/chan.cc

+ 1 - 0
doc/UPDATES.md

@@ -5,6 +5,7 @@
   * Update server list, 'set -yes servers -' and 'set -yes servers6 -' to get new list.
   * Fix Linux binary compat on FreeBSD due to lack of ptrace(2).
   * Avoid warnings from Debian's FORTIFY_SOURCE
+  * Remove an old +take limiter that was forgotten.
 
 # 1.4.6
   * Disable demo TCL support by default to prevent confusion during build.

+ 0 - 1
src/mod/irc.mod/chan.cc

@@ -1481,7 +1481,6 @@ do_take(struct chanset_t *chan)
     work[work_len] = 0;
 
     // Prevent excess flood
-    if (!HAVE_F1) usleep(1000 * 500);
     if (++lines >= max_lines) {
       tputs(serv, work, work_len);
       work[0] = 0;