mirror of
https://github.com/osmarks/ngircd.git
synced 2025-01-15 10:05:40 +00:00
- bei "ngircd --version" werden nun die eincompilierten Pfade angezeigt.
This commit is contained in:
parent
89f9522e22
commit
0903e7763c
@ -9,11 +9,14 @@
|
|||||||
* Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
|
* Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
|
||||||
* der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
|
* 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 ;-)
|
* ngircd.c: Hier beginnt alles ;-)
|
||||||
*
|
*
|
||||||
* $Log: ngircd.c,v $
|
* $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
|
* Revision 1.29 2002/03/06 15:36:04 alex
|
||||||
* - stderr wird nun in eine Datei umgelenkt (ngircd.err). Wenn der Server
|
* - stderr wird nun in eine Datei umgelenkt (ngircd.err). Wenn der Server
|
||||||
* nicht im Debug-Modus laeuft, so wird diese bei Programmende geloescht.
|
* nicht im Debug-Modus laeuft, so wird diese bei Programmende geloescht.
|
||||||
@ -207,7 +210,7 @@ GLOBAL INT main( INT argc, CONST CHAR *argv[] )
|
|||||||
#endif
|
#endif
|
||||||
if( strcmp( argv[i], "--version" ) == 0 )
|
if( strcmp( argv[i], "--version" ) == 0 )
|
||||||
{
|
{
|
||||||
Show_Version( );
|
Show_Version( ); puts( "" );
|
||||||
exit( 1 );
|
exit( 1 );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -486,6 +489,10 @@ LOCAL VOID Show_Version( VOID )
|
|||||||
puts( "Copyright (c)2001,2002 by Alexander Barton (alex@barton.de).\n" );
|
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( "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( "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 */
|
} /* Show_Version */
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user