- Anpassungen bzw. Fixes fuer "strict RFC"-Mode.
This commit is contained in:
parent
b840be9875
commit
12cad28ee8
|
@ -9,7 +9,7 @@
|
|||
* Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
|
||||
* der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
|
||||
*
|
||||
* $Id: conf.c,v 1.33 2002/10/09 16:53:02 alex Exp $
|
||||
* $Id: conf.c,v 1.34 2002/10/21 13:45:07 alex Exp $
|
||||
*
|
||||
* conf.h: Konfiguration des ngircd
|
||||
*/
|
||||
|
@ -539,7 +539,7 @@ Validate_Config( VOID )
|
|||
}
|
||||
|
||||
#ifdef STRICT_RFC
|
||||
if( ! ConfAdminMail[0] )
|
||||
if( ! Conf_ServerAdminMail[0] )
|
||||
{
|
||||
/* Keine Server-Information konfiguriert */
|
||||
Config_Error( LOG_ALERT, "No administrator email address configured in \"%s\" ('AdminEMail')!", NGIRCd_ConfFile );
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
* Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
|
||||
* der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
|
||||
*
|
||||
* $Id: conn.c,v 1.83 2002/10/15 09:24:54 alex Exp $
|
||||
* $Id: conn.c,v 1.84 2002/10/21 13:45:07 alex Exp $
|
||||
*
|
||||
* connect.h: Verwaltung aller Netz-Verbindungen ("connections")
|
||||
*/
|
||||
|
@ -855,7 +855,10 @@ Handle_Buffer( CONN_ID Idx )
|
|||
{
|
||||
/* Daten im Lese-Puffer einer Verbindung verarbeiten. */
|
||||
|
||||
CHAR *ptr, *ptr1, *ptr2;
|
||||
#ifndef STRICT_RFC
|
||||
CHAR *ptr1, *ptr2;
|
||||
#endif
|
||||
CHAR *ptr;
|
||||
INT len, delta;
|
||||
|
||||
/* Eine komplette Anfrage muss mit CR+LF enden, vgl.
|
||||
|
|
Loading…
Reference in New Issue