repo: ngircd
action: commit
revision: 
path_from: 
revision_from: 12cad28ee8804b0d7c5bce7ba8f3348e2702502c:
path_to: 
revision_to: 
git.thebackupbox.net
ngircd
git clone git://git.thebackupbox.net/ngircd
commit 12cad28ee8804b0d7c5bce7ba8f3348e2702502c
Author: Alexander Barton 
Date:   Mon Oct 21 13:45:07 2002 +0000

    - Anpassungen bzw. Fixes fuer "strict RFC"-Mode.

diff --git a/src/ngircd/conf.c b/src/ngircd/conf.c
index 40859888d217b19eb1bcb6e86853d3027b4ec593..
index ..81ddb252a5e1f55a67655135e4bfcfa851e59d18 100644
--- a/src/ngircd/conf.c
+++ b/src/ngircd/conf.c
@@ -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 );
diff --git a/src/ngircd/conn.c b/src/ngircd/conn.c
index 91ee25981fb0f7283f8573c1c878f4f4a4c0ceb7..
index ..bb3271958557b291852f64fe2a07fc0b638ad927 100644
--- a/src/ngircd/conn.c
+++ b/src/ngircd/conn.c
@@ -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.

-----END OF PAGE-----