CVSROOT    : /cvsroot/undernet-ircu
Module     : ircu2.10
Branch tags: u2_10_11_05
Commit time: 2003-06-27 04:47:17 UTC

Modified files:
  Tag: u2_10_11_05
     ChangeLog ircd/s_user.c

Log message:

Author: Kev <[EMAIL PROTECTED]>
Log message:

Stomp on a warning.

---------------------- diff included ----------------------
Index: ircu2.10/ChangeLog
diff -u ircu2.10/ChangeLog:1.290.2.128.2.22 ircu2.10/ChangeLog:1.290.2.128.2.23
--- ircu2.10/ChangeLog:1.290.2.128.2.22 Sun Jun 22 08:28:12 2003
+++ ircu2.10/ChangeLog  Thu Jun 26 21:47:07 2003
@@ -1,3 +1,7 @@
+2003-06-27  Kevin L Mitchell  <[EMAIL PROTECTED]>
+
+       * ircd/s_user.c (register_user): stomp on a warning
+
 2003-06-22 hikari <[EMAIL PROTECTED]>
        * ircd/ircd.c: Fixed check_pings() - shouldn't be any problem with
        clients not being able to connect anymore.
Index: ircu2.10/ircd/s_user.c
diff -u ircu2.10/ircd/s_user.c:1.52.2.15.2.3 ircu2.10/ircd/s_user.c:1.52.2.15.2.4
--- ircu2.10/ircd/s_user.c:1.52.2.15.2.3        Thu May  1 12:50:17 2003
+++ ircu2.10/ircd/s_user.c      Thu Jun 26 21:47:07 2003
@@ -20,7 +20,7 @@
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  *
- * $Id: s_user.c,v 1.52.2.15.2.3 2003/05/01 19:50:17 shad0w Exp $
+ * $Id: s_user.c,v 1.52.2.15.2.4 2003/06/27 04:47:07 klmitch Exp $
  */
 #include "config.h"
 
@@ -441,7 +441,7 @@
     /*
      * following block for the benefit of time-dependent K:-lines
      */
-    if (killreason=find_kill(sptr)) {
+    if ((killreason=find_kill(sptr))) {
       ServerStats->is_ref++;
       IPcheck_connect_fail(cli_ip(sptr));
       return exit_client(cptr, sptr, &me,
----------------------- End of diff -----------------------

Reply via email to