Committer  : entrope
CVSROOT    : /cvsroot/undernet-ircu
Module     : ircu2.10
Branch tags: u2_10_12_branch
Commit time: 2006-06-30 19:02:45 UTC

Modified files:
  Tag: u2_10_12_branch
     ircd/s_auth.c

Log message:

Fix inverted test in previous commit.

---------------------- diff included ----------------------
Index: ircu2.10/ircd/s_auth.c
diff -u ircu2.10/ircd/s_auth.c:1.37.2.18 ircu2.10/ircd/s_auth.c:1.37.2.19
--- ircu2.10/ircd/s_auth.c:1.37.2.18    Fri Jun 30 08:52:18 2006
+++ ircu2.10/ircd/s_auth.c      Fri Jun 30 12:02:35 2006
@@ -31,7 +31,7 @@
  */
 /** @file
  * @brief Implementation of DNS and ident lookups.
- * @version $Id: s_auth.c,v 1.37.2.18 2006/06/30 15:52:18 entrope Exp $
+ * @version $Id: s_auth.c,v 1.37.2.19 2006/06/30 19:02:35 entrope Exp $
  */
 #include "config.h"
 
@@ -426,7 +426,7 @@
     FlagSet(&auth->flags, AR_IAUTH_HURRY);
 
   destroy_auth_request(auth);
-  if (!IsUserPort(auth->client))
+  if (IsUserPort(auth->client))
   {
     memset(cli_passwd(auth->client), 0, sizeof(cli_passwd(auth->client)));
     res = auth_set_username(auth);
----------------------- End of diff -----------------------
_______________________________________________
Patches mailing list
[email protected]
http://undernet.sbg.org/mailman/listinfo/patches

Reply via email to