commit - cb6279f1020e1818ab3a379f36724ecef7c8d2d0
commit + c9ccb669442726969a096fe03390b058cc088717
blob - c9c15c1f4f2ae9b5948112f29f0b1fbb97179fb6
blob + 793c22ae1289ca565b32226588e95a68cb12ac51
--- ChangeLog
+++ ChangeLog
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.
--
-$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 $
blob - c3a6db8e6ead0288af8e160944dfbcbb1517a9b8
blob + dc16758d9ee2682eef6db96dacae6d4707631e5a
--- src/ngircd/ngircd.c
+++ src/ngircd/ngircd.c
#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 <assert.h>
ok = TRUE;
}
#endif
+ if( argv[i][n] == 't' )
+ {
+ configtest = TRUE;
+ ok = TRUE;
+ }
if( ! ok )
{
#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 */