Committer  : entrope
CVSROOT    : /cvsroot/undernet-ircu
Module     : ircu2.10
Commit time: 2004-09-18 14:44:31 UTC

Modified files:
     ChangeLog ircd/ircd.c

Log message:

Report configuration file name for "ircd -k".

---------------------- diff included ----------------------
Index: ircu2.10/ChangeLog
diff -u ircu2.10/ChangeLog:1.473 ircu2.10/ChangeLog:1.474
--- ircu2.10/ChangeLog:1.473    Sat Sep 18 07:42:40 2004
+++ ircu2.10/ChangeLog  Sat Sep 18 07:44:21 2004
@@ -7,6 +7,8 @@
        Make ping_freq and conn_freq unsigned short. (No more negative
        numbers in /stats y.)
 
+       * ircd/ircd.c: Report configuration file name for "ircd -k".
+
 2004-09-18  hikari <[EMAIL PROTECTED]>
 
        * ircd/Makefile.in: Fixed a missing internal build dependency.
Index: ircu2.10/ircd/ircd.c
diff -u ircu2.10/ircd/ircd.c:1.71 ircu2.10/ircd/ircd.c:1.72
--- ircu2.10/ircd/ircd.c:1.71   Sat Sep 11 11:07:05 2004
+++ ircu2.10/ircd/ircd.c        Sat Sep 18 07:44:21 2004
@@ -17,7 +17,7 @@
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  *
- * $Id: ircd.c,v 1.71 2004/09/11 18:07:05 entrope Exp $
+ * $Id: ircd.c,v 1.72 2004/09/18 14:44:21 entrope Exp $
  */
 #include "config.h"
 
@@ -677,8 +677,8 @@
     return 7;
   }
 
-  if(thisServer.bootopt & BOOT_CHKCONF) {
-    fprintf(stderr, "Configuration file checked okay.\n");
+  if (thisServer.bootopt & BOOT_CHKCONF) {
+    fprintf(stderr, "Configuration file %s checked okay.\n", configfile);
     return 0;
   }
 
----------------------- End of diff -----------------------

Reply via email to