Commit Diff


commit - 180fdb542bc11ae02fa99f98d80d951c2399b9f3
commit + 35fe11fea4cbf7d9ac59cdbc2678bf4da295f5fe
blob - 2cf968ab31fa38afc6700ff912640f33e3138aa4
blob + f3339d162fd5b48ad303c70ba7f8dc7c7fc6c15d
--- ChangeLog
+++ 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 $
blob - 0585de643473ec76f3b6f39f702c79f9878fd79c
blob + 1aeba9e82a75b7aa94aef7ed37661e5b53a118e6
--- src/ngircd/conf.c
+++ src/ngircd/conf.c
@@ -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 );