diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2000-03-29 16:18:05 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2000-03-29 16:18:05 +0000 |
commit | 477dacb5fad8bd6a3045e5d5b02def93484718f0 (patch) | |
tree | 82cd3f983b886c78e2009233a46ff86ee19dad78 | |
parent | 0d421b5c3935077e2fc502f561d7861126e6fdeb (diff) | |
download | tinyproxy-477dacb5fad8bd6a3045e5d5b02def93484718f0.tar.gz tinyproxy-477dacb5fad8bd6a3045e5d5b02def93484718f0.zip |
Included the <sys/types.h> header.
Diffstat (limited to '')
-rw-r--r-- | src/dnscache.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/dnscache.c b/src/dnscache.c index 7415114..76043a2 100644 --- a/src/dnscache.c +++ b/src/dnscache.c @@ -1,4 +1,4 @@ -/* $Id: dnscache.c,v 1.2 2000-03-11 20:37:44 rjkaes Exp $ +/* $Id: dnscache.c,v 1.3 2000-03-29 16:18:05 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 @@ -33,6 +33,7 @@ #include <arpa/inet.h> #include <assert.h> #include <ctype.h> +#include <sys/types.h> #include "utils.h" #include "dnscache.h" |