1
0
mirror of https://github.com/osmarks/ngircd.git synced 2025-01-08 23:00:27 +00:00

- Kommandozeilen-Option "-f" wurde falsch geparsed.

This commit is contained in:
Alexander Barton 2002-03-31 13:20:42 +00:00
parent d79b2f0a35
commit 85aad86906

View File

@ -9,7 +9,7 @@
* 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.40 2002/03/29 23:34:18 alex Exp $ * $Id: ngircd.c,v 1.41 2002/03/31 13:20:42 alex Exp $
* *
* ngircd.c: Hier beginnt alles ;-) * ngircd.c: Hier beginnt alles ;-)
*/ */
@ -145,7 +145,7 @@ GLOBAL int main( int argc, const char *argv[] )
#endif #endif
if( argv[i][n] == 'f' ) if( argv[i][n] == 'f' )
{ {
if(( ! argv[i][n+i] ) && ( i + 1 < argc )) if(( ! argv[i][n + 1] ) && ( i + 1 < argc ))
{ {
/* Ok, danach kommt ein Leerzeichen */ /* Ok, danach kommt ein Leerzeichen */
strncpy( NGIRCd_ConfFile, argv[i + 1], FNAME_LEN - 1 ); strncpy( NGIRCd_ConfFile, argv[i + 1], FNAME_LEN - 1 );