1
0
mirror of https://github.com/osmarks/ngircd.git synced 2024-10-28 04:46:17 +00:00

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

This commit is contained in:
Alexander Barton 2004-09-24 18:00:40 +00:00
parent ceafdf109b
commit 1e692e5890
2 changed files with 5 additions and 4 deletions

View File

@ -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 $

View File

@ -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 );