diff options
author | Nick Mathewson <nickm@torproject.org> | 2007-06-17 17:43:25 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2007-06-17 17:43:25 +0000 |
commit | 99792df64585558ae51ec4b93f26ee42a07cd82c (patch) | |
tree | 184581e1540cab3bfab23a62989d3a8cee0b78f1 /src/or/eventdns.c | |
parent | 721899a44736607f6a6c9477cb42625c91fcec7a (diff) | |
download | tor-99792df64585558ae51ec4b93f26ee42a07cd82c.tar.gz tor-99792df64585558ae51ec4b93f26ee42a07cd82c.zip |
r13473@catbus: nickm | 2007-06-17 13:42:36 -0400
Fix solaris eventdns.c behavior. This time, I think I got it. We were redefining _FILE_OFFSET_BITS, and thereby calling fstat64() on a struct stat, or something like that.
svn:r10643
Diffstat (limited to 'src/or/eventdns.c')
-rw-r--r-- | src/or/eventdns.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/or/eventdns.c b/src/or/eventdns.c index 46735f28f0..a1a9f2eb62 100644 --- a/src/or/eventdns.c +++ b/src/or/eventdns.c @@ -32,10 +32,9 @@ * Version: 0.1b */ -#include <sys/types.h> #include "eventdns_tor.h" +#include <sys/types.h> //#define NDEBUG -#include "../common/torint.h" #ifndef DNS_USE_CPU_CLOCK_FOR_ID #ifndef DNS_USE_GETTIMEOFDAY_FOR_ID |