CVSROOT : /cvsroot/undernet-ircu
Module : ircu2.10
Commit time: 2003-06-17 20:12:10 UTC
Modified files:
ChangeLog ircd/res_adns.c
Log message:
Author: Alex Badea <[EMAIL PROTECTED]>
Log message:
Added a missing include.
---------------------- diff included ----------------------
Index: ircu2.10/ChangeLog
diff -u ircu2.10/ChangeLog:1.379 ircu2.10/ChangeLog:1.380
--- ircu2.10/ChangeLog:1.379 Thu Mar 6 18:36:10 2003
+++ ircu2.10/ChangeLog Tue Jun 17 13:11:59 2003
@@ -1,3 +1,8 @@
+2003-06-17 Alex Badea <[EMAIL PROTECTED]>
+
+ * ircd/res_adns.c: included sys/types.h, for non-Linux
+ headers
+
2003-03-06 Kevin L. Mitchell <[EMAIL PROTECTED]>
* libs/dbprim: database primitives library, including
Index: ircu2.10/ircd/res_adns.c
diff -u ircu2.10/ircd/res_adns.c:1.2 ircu2.10/ircd/res_adns.c:1.3
--- ircu2.10/ircd/res_adns.c:1.2 Fri Jan 10 21:46:51 2003
+++ ircu2.10/ircd/res_adns.c Tue Jun 17 13:12:00 2003
@@ -4,7 +4,7 @@
* shape or form. The author takes no responsibility for any damage or loss
* of property which results from the use of this software.
*
- * $Id: res_adns.c,v 1.2 2003/01/11 05:46:51 bleepster Exp $
+ * $Id: res_adns.c,v 1.3 2003/06/17 20:12:00 decampos Exp $
*
* July 1999 - Rewrote a bunch of stuff here. Change hostent builder code,
* added callbacks and reference counting of returned hostents.
@@ -38,6 +38,7 @@
#include <string.h>
#include <stdlib.h>
#include <sys/time.h>
+#include <sys/types.h>
#include <sys/socket.h>
#include <fcntl.h>
#include <unistd.h>
----------------------- End of diff -----------------------