mirror of
https://github.com/osmarks/ngircd.git
synced 2024-12-15 03:10:27 +00:00
- der Sniffer (--sniffer) aktiviert nun automatisch den Debug-Modus mit.
This commit is contained in:
parent
772de2596d
commit
991da8ea2f
@ -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.44 2002/04/24 13:33:56 alex Exp $
|
* $Id: ngircd.c,v 1.45 2002/05/18 12:20:02 alex Exp $
|
||||||
*
|
*
|
||||||
* ngircd.c: Hier beginnt alles ;-)
|
* ngircd.c: Hier beginnt alles ;-)
|
||||||
*/
|
*/
|
||||||
@ -198,7 +198,11 @@ GLOBAL int main( int argc, const char *argv[] )
|
|||||||
if( NGIRCd_Debug ) strcpy( NGIRCd_DebugLevel, "1" );
|
if( NGIRCd_Debug ) strcpy( NGIRCd_DebugLevel, "1" );
|
||||||
#endif
|
#endif
|
||||||
#ifdef SNIFFER
|
#ifdef SNIFFER
|
||||||
if( NGIRCd_Sniffer ) strcpy( NGIRCd_DebugLevel, "2" );
|
if( NGIRCd_Sniffer )
|
||||||
|
{
|
||||||
|
NGIRCd_Debug = TRUE;
|
||||||
|
strcpy( NGIRCd_DebugLevel, "2" );
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Soll nur die Konfigurations ueberprueft und ausgegeben werden? */
|
/* Soll nur die Konfigurations ueberprueft und ausgegeben werden? */
|
||||||
|
Loading…
Reference in New Issue
Block a user