diff options
author | Sebastian Hahn <sebastian@torproject.org> | 2011-08-30 20:45:49 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2011-08-30 20:45:49 -0400 |
commit | 03760f6c6f0c580542c8bfc519062b65afdc8d5f (patch) | |
tree | 1563dc2bd4e8abf0b6a182efab2ebc3dafdf5873 /src | |
parent | 393e4fb5b5529c666438ef04ebd076f90dd287fa (diff) | |
download | tor-03760f6c6f0c580542c8bfc519062b65afdc8d5f.tar tor-03760f6c6f0c580542c8bfc519062b65afdc8d5f.tar.gz |
Fix a compilation issue on older FreeBSDs
Diffstat (limited to 'src')
-rw-r--r-- | src/common/torgzip.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/torgzip.c b/src/common/torgzip.c index 2937c67de..a26e5b21e 100644 --- a/src/common/torgzip.c +++ b/src/common/torgzip.c @@ -14,11 +14,12 @@ #include <stdio.h> #include <assert.h> #include <string.h> +#include "torint.h" + #ifdef HAVE_NETINET_IN_H #include <netinet/in.h> #endif -#include "torint.h" #include "util.h" #include "torlog.h" #include "torgzip.h" |