From bcd6db901659a98faf6a18d4721fafb8f1042b52 Mon Sep 17 00:00:00 2001 From: Alexander Barton Date: Sun, 27 Apr 2003 11:48:53 +0000 Subject: [PATCH] Fixed --configtest: There is no variable "ServerPwd", it's "Password". --- src/ngircd/conf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ngircd/conf.c b/src/ngircd/conf.c index fe9fc80e..36498640 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.57 2003/04/21 11:06:07 alex Exp $"; +static char UNUSED id[] = "$Id: conf.c,v 1.57.2.1 2003/04/27 11:48:53 alex Exp $"; #include "imp.h" #include @@ -108,7 +108,7 @@ Conf_Test( VOID ) puts( "[GLOBAL]" ); printf( " ServerName = %s\n", Conf_ServerName ); printf( " ServerInfo = %s\n", Conf_ServerInfo ); - printf( " ServerPwd = %s\n", Conf_ServerPwd ); + printf( " Password = %s\n", Conf_ServerPwd ); printf( " AdminInfo1 = %s\n", Conf_ServerAdmin1 ); printf( " AdminInfo2 = %s\n", Conf_ServerAdmin2 ); printf( " AdminEMail = %s\n", Conf_ServerAdminMail );