From: Alexander Barton Date: Mon, 29 Dec 2003 14:53:26 +0000 (+0000) Subject: Added new short command line option "-t" as alternative to "--configtest". X-Git-Tag: rel-0-8-0-pre1~58 X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=commitdiff_plain;h=c9ccb669442726969a096fe03390b058cc088717 Added new short command line option "-t" as alternative to "--configtest". --- diff --git a/ChangeLog b/ChangeLog index c9c15c1f..793c22ae 100644 --- a/ChangeLog +++ b/ChangeLog @@ -12,6 +12,7 @@ ngIRCd CVSHEAD + - Added short command line option "-t" as alternative to "--configtest". - Added optional support for "IDENT" lookups on incoming connections. You have to enable this function with the ./configure switch "--with-ident". The default is not to do IDENT lookups. @@ -491,4 +492,4 @@ ngIRCd 0.0.1, 31.12.2001 -- -$Id: ChangeLog,v 1.220 2003/12/27 13:01:12 alex Exp $ +$Id: ChangeLog,v 1.221 2003/12/29 14:53:26 alex Exp $ diff --git a/src/ngircd/ngircd.c b/src/ngircd/ngircd.c index c3a6db8e..dc16758d 100644 --- a/src/ngircd/ngircd.c +++ b/src/ngircd/ngircd.c @@ -14,7 +14,7 @@ #include "portab.h" -static char UNUSED id[] = "$Id: ngircd.c,v 1.79 2003/12/27 13:09:24 alex Exp $"; +static char UNUSED id[] = "$Id: ngircd.c,v 1.80 2003/12/29 14:53:26 alex Exp $"; #include "imp.h" #include @@ -183,6 +183,11 @@ main( int argc, const char *argv[] ) ok = TRUE; } #endif + if( argv[i][n] == 't' ) + { + configtest = TRUE; + ok = TRUE; + } if( ! ok ) { @@ -552,7 +557,7 @@ Show_Help( VOID ) #ifdef SNIFFER puts( " -s, --sniffer enable network sniffer and display all IRC traffic" ); #endif - puts( " --configtest read, validate and display configuration; then exit" ); + puts( " -t, --configtest read, validate and display configuration; then exit" ); puts( " --version output version information and exit" ); puts( " --help display this help and exit" ); } /* Show_Help */