repo: ngircd
action: commit
revision: 
path_from: 
revision_from: 1e692e5890c2a5dedf4864f5522b148734851cde:
path_to: 
revision_to: 
git.thebackupbox.net
ngircd
git clone git://git.thebackupbox.net/ngircd
commit 1e692e5890c2a5dedf4864f5522b148734851cde
Author: Alexander Barton 
Date:   Fri Sep 24 18:00:40 2004 +0000

    Fixed wrong variable names in output of "ngircd --configtest".

diff --git a/ChangeLog b/ChangeLog
index c68418a5ed37684867d7756c3b4ee9a9bb98e8d6..
index ..9e4e3a30d114ae3b538d5b7a2d3b7d7fc5848900 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -12,6 +12,7 @@

 ngIRCd CVSHEAD

+  - 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.
@@ -542,4 +543,4 @@ ngIRCd 0.0.1, 31.12.2001


 -- 
-$Id: ChangeLog,v 1.241 2004/09/06 00:35:52 alex Exp $
+$Id: ChangeLog,v 1.242 2004/09/24 18:00:40 alex Exp $
diff --git a/src/ngircd/conf.c b/src/ngircd/conf.c
index 1ea1fe741ef3397c35a6d151c1bac575c4c1eec7..
index ..c134cbe62d0bee9026b737308261bc91e9292e8a 100644
--- a/src/ngircd/conf.c
+++ b/src/ngircd/conf.c
@@ -14,7 +14,7 @@

 #include "portab.h"

-static char UNUSED id[] = "$Id: conf.c,v 1.64 2004/05/07 11:19:21 alex Exp $";
+static char UNUSED id[] = "$Id: conf.c,v 1.65 2004/09/24 18:00:40 alex Exp $";

 #include "imp.h"
 #include 
@@ -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 );

-----END OF PAGE-----