]> arthur.barton.de Git - ngircd-alex.git/commitdiff
Fixed wrong variable names in output of "ngircd --configtest". [From HEAD].
authorAlexander Barton <alex@barton.de>
Mon, 27 Sep 2004 11:30:52 +0000 (11:30 +0000)
committerAlexander Barton <alex@barton.de>
Mon, 27 Sep 2004 11:30:52 +0000 (11:30 +0000)
ChangeLog
src/ngircd/conf.c

index 2cf968ab31fa38afc6700ff912640f33e3138aa4..f3339d162fd5b48ad303c70ba7f8dc7c7fc6c15d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -12,6 +12,7 @@
 
 ngircd 0.8-CVS
 
+  - Fixed wrong variable names in output of "ngircd --configtest".
   - Debian: Fxied the name of the "default file" in the init script for
     ngircd-full packages. And do the test if the binary is executable after
     reading this file.
@@ -537,4 +538,4 @@ ngIRCd 0.0.1, 31.12.2001
 
 
 -- 
-$Id: ChangeLog,v 1.233.2.7 2004/09/06 00:36:49 alex Exp $
+$Id: ChangeLog,v 1.233.2.8 2004/09/27 11:30:52 alex Exp $
index 0585de643473ec76f3b6f39f702c79f9878fd79c..1aeba9e82a75b7aa94aef7ed37661e5b53a118e6 100644 (file)
@@ -14,7 +14,7 @@
 
 #include "portab.h"
 
-static char UNUSED id[] = "$Id: conf.c,v 1.63.2.1 2004/05/07 11:24:18 alex Exp $";
+static char UNUSED id[] = "$Id: conf.c,v 1.63.2.2 2004/09/27 11:30:52 alex Exp $";
 
 #include "imp.h"
 #include <assert.h>
@@ -107,8 +107,8 @@ Conf_Test( VOID )
        else puts( "Ok, dump of your server configuration follows:\n" );
 
        puts( "[GLOBAL]" );
-       printf( "  ServerName = %s\n", Conf_ServerName );
-       printf( "  ServerInfo = %s\n", Conf_ServerInfo );
+       printf( "  Name = %s\n", Conf_ServerName );
+       printf( "  Info = %s\n", Conf_ServerInfo );
        printf( "  Password = %s\n", Conf_ServerPwd );
        printf( "  AdminInfo1 = %s\n", Conf_ServerAdmin1 );
        printf( "  AdminInfo2 = %s\n", Conf_ServerAdmin2 );