Committer  : entrope
CVSROOT    : /cvsroot/undernet-ircu
Module     : ircu2.10
Branch tags: u2_10_12_branch
Commit time: 2005-12-31 01:40:11 UTC

Modified files:
  Tag: u2_10_12_branch
     ircd/s_conf.c ChangeLog

Log message:

Fix display of absent passwords during "ircd -k -c ....".

---------------------- diff included ----------------------
Index: ircu2.10/ChangeLog
diff -u ircu2.10/ChangeLog:1.710.2.52 ircu2.10/ChangeLog:1.710.2.53
--- ircu2.10/ChangeLog:1.710.2.52       Fri Dec 30 17:38:24 2005
+++ ircu2.10/ChangeLog  Fri Dec 30 17:40:00 2005
@@ -1,5 +1,9 @@
 2005-12-30  Michael Poole <[EMAIL PROTECTED]>
 
+       * ircd/s_conf.c (conf_debug_iline): Fix display of null passwords.
+
+2005-12-30  Michael Poole <[EMAIL PROTECTED]>
+
        * RELEASE.NOTES: Mention removal of HIS_STATS_h.
 
        * ircd/convert-conf.c (removed_features): Add AUTOHIDE,
Index: ircu2.10/ircd/s_conf.c
diff -u ircu2.10/ircd/s_conf.c:1.81.2.1 ircu2.10/ircd/s_conf.c:1.81.2.2
--- ircu2.10/ircd/s_conf.c:1.81.2.1     Wed Oct  5 17:37:31 2005
+++ ircu2.10/ircd/s_conf.c      Fri Dec 30 17:40:00 2005
@@ -19,7 +19,7 @@
  */
 /** @file
  * @brief ircd configuration file driver
- * @version $Id: s_conf.c,v 1.81.2.1 2005/10/06 00:37:31 entrope Exp $
+ * @version $Id: s_conf.c,v 1.81.2.2 2005/12/31 01:40:00 entrope Exp $
  */
 #include "config.h"
 
@@ -482,7 +482,8 @@
             (aconf->username ? aconf->username : "(null)"),
             (aconf->host ? aconf->host : "(null)"),
             (aconf->name ? aconf->name : "(null)"),
-            ConfClass(aconf), aconf->maximum,  aconf->passwd);
+            ConfClass(aconf), aconf->maximum,
+            (aconf->passwd ? aconf->passwd : "(null)"));
     break;
   }
 
----------------------- End of diff -----------------------
_______________________________________________
Patches mailing list
[email protected]
http://undernet.sbg.org/mailman/listinfo/patches

Reply via email to