commit - 89f9522e224e2e031ca10868c15b151efc91f420
commit + 0903e7763c9d6c56f994829b26f68a58859a9d27
blob - 25d7a3411cd65211986b140b4a1b1503144c175e
blob + 4dd9b6a28d9798c1d0978f560503adcc358fc3dd
--- src/ngircd/ngircd.c
+++ src/ngircd/ngircd.c
* Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
* der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
*
- * $Id: ngircd.c,v 1.29 2002/03/06 15:36:04 alex Exp $
+ * $Id: ngircd.c,v 1.30 2002/03/10 17:45:41 alex Exp $
*
* ngircd.c: Hier beginnt alles ;-)
*
* $Log: ngircd.c,v $
+ * Revision 1.30 2002/03/10 17:45:41 alex
+ * - bei "ngircd --version" werden nun die eincompilierten Pfade angezeigt.
+ *
* Revision 1.29 2002/03/06 15:36:04 alex
* - stderr wird nun in eine Datei umgelenkt (ngircd.err). Wenn der Server
* nicht im Debug-Modus laeuft, so wird diese bei Programmende geloescht.
#endif
if( strcmp( argv[i], "--version" ) == 0 )
{
- Show_Version( );
+ Show_Version( ); puts( "" );
exit( 1 );
}
}
puts( "Copyright (c)2001,2002 by Alexander Barton (alex@barton.de).\n" );
puts( "This is free software; see the source for copying conditions. There is NO" );
puts( "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." );
+ puts( "\nCompile-time defaults:\n" );
+ puts( " - configuration: "CONFIG_FILE );
+ puts( " - MOTD file: "MOTD_FILE );
+ puts( " - server error log: "ERROR_FILE );
} /* Show_Version */