summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog8
-rw-r--r--src/dnscache.c4
-rw-r--r--src/uri.c3
3 files changed, 12 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 5edac72..547caa3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2000-04-26 Robert James Kaes <rjkaes@flarenet.com>
+
+ * src/uri.c: Added the #include <sys/types.h> for compatibility
+ with FreeBSD.
+
+ * src/dnscache.c: Moved the #include <sys/types.h> above the
+ #include <sys/socket.h> reference for compatibility with FreeBSD.
+
2000-03-31 Robert James Kaes <rjkaes@flarenet.com>
* src/reqs.c (clientreq): Removed the hack for POST methods with
diff --git a/src/dnscache.c b/src/dnscache.c
index 76043a2..9bc8184 100644
--- a/src/dnscache.c
+++ b/src/dnscache.c
@@ -1,4 +1,4 @@
-/* $Id: dnscache.c,v 1.3 2000-03-29 16:18:05 rjkaes Exp $
+/* $Id: dnscache.c,v 1.4 2000-04-26 16:31:29 rjkaes Exp $
*
* This is a caching DNS system. When a host name is needed we look it up here
* and see if there is already an answer for it. The domains are placed in a
@@ -28,12 +28,12 @@
#include <string.h>
#include <netdb.h>
#include <time.h>
+#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <assert.h>
#include <ctype.h>
-#include <sys/types.h>
#include "utils.h"
#include "dnscache.h"
diff --git a/src/uri.c b/src/uri.c
index 8a2b744..7ba352c 100644
--- a/src/uri.c
+++ b/src/uri.c
@@ -1,4 +1,4 @@
-/* $Id: uri.c,v 1.1.1.1 2000-02-16 17:32:23 sdyoung Exp $
+/* $Id: uri.c,v 1.2 2000-04-26 16:31:29 rjkaes Exp $
*
* This borrows the REGEX from RFC2396 to split a URI string into the five
* primary components. The components are:
@@ -28,6 +28,7 @@
#include <string.h>
#include <stdlib.h>
#include <assert.h>
+#include <sys/types.h>
#include "uri.h"
#include "utils.h"