about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2004-09-24 18:00:40 +0000
committerAlexander Barton <alex@barton.de>2004-09-24 18:00:40 +0000
commit1e692e5890c2a5dedf4864f5522b148734851cde (patch)
tree5c7af637a6f5b7f428493b31882cff4fdf8a87ba /src
parentceafdf109b724d1c5640a3f437c2ef6c7492289b (diff)
downloadngircd-1e692e5890c2a5dedf4864f5522b148734851cde.tar.gz
ngircd-1e692e5890c2a5dedf4864f5522b148734851cde.zip
Fixed wrong variable names in output of "ngircd --configtest".
Diffstat (limited to 'src')
-rw-r--r--src/ngircd/conf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ngircd/conf.c b/src/ngircd/conf.c
index 1ea1fe74..c134cbe6 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 <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 );