about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2002-01-05 15:55:11 +0000
committerAlexander Barton <alex@barton.de>2002-01-05 15:55:11 +0000
commitbb2143aabc12215621e8ba4542553c1b2631b9ea (patch)
tree93ac09af671b01e842d197b74f8e752e35ce482d /src
parent03783eea35193fe26f4d701756cf4afd43b11094 (diff)
downloadngircd-bb2143aabc12215621e8ba4542553c1b2631b9ea.tar.gz
ngircd-bb2143aabc12215621e8ba4542553c1b2631b9ea.zip
- Wrapper fuer inet_aton(): liefert immer Fehler.
Diffstat (limited to 'src')
-rw-r--r--src/ngircd/global.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/ngircd/global.h b/src/ngircd/global.h
index 217e4ad1..9a1f0bc1 100644
--- a/src/ngircd/global.h
+++ b/src/ngircd/global.h
@@ -9,11 +9,14 @@
  * Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
  * der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
  *
- * $Id: global.h,v 1.5 2002/01/02 02:42:58 alex Exp $
+ * $Id: global.h,v 1.6 2002/01/05 15:55:11 alex Exp $
  *
  * global.h: Globaler Header, wir in jedes(!) Modul eingebunden.
  *
  * $Log: global.h,v $
+ * Revision 1.6  2002/01/05 15:55:11  alex
+ * - Wrapper fuer inet_aton(): liefert immer Fehler.
+ *
  * Revision 1.5  2002/01/02 02:42:58  alex
  * - Copyright-Texte aktualisiert.
  *
@@ -44,6 +47,10 @@
 #define socklen_t int			/* u.a. fuer Mac OS X */
 #endif
 
+#ifndef HAVE_INET_ATON
+#define inet_aton( opt, bind ) 0
+#endif
+
 
 #endif