diff options
author | Sebastian Hahn <sebastian@torproject.org> | 2011-12-10 03:25:40 +0100 |
---|---|---|
committer | Sebastian Hahn <sebastian@torproject.org> | 2011-12-10 03:25:40 +0100 |
commit | e4cebb76c5577b1a39b752cc694147e929662c4a (patch) | |
tree | 0f07799fbe374503724b87a3884a6dcba20920e2 /src/tools | |
parent | b7519dce98031c2adca3f0c8f28741a219845b6e (diff) | |
download | tor-e4cebb76c5577b1a39b752cc694147e929662c4a.tar.gz tor-e4cebb76c5577b1a39b752cc694147e929662c4a.zip |
Fix compilation of natpmp-helper on non-windows
Fixes a small oversight in 5dbfb1b3e0efc95be34ba7d69852511c9bac1f4b.
Diffstat (limited to 'src/tools')
-rw-r--r-- | src/tools/tor-fw-helper/tor-fw-helper-natpmp.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/tools/tor-fw-helper/tor-fw-helper-natpmp.c b/src/tools/tor-fw-helper/tor-fw-helper-natpmp.c index aaa685e1ee..2380b141df 100644 --- a/src/tools/tor-fw-helper/tor-fw-helper-natpmp.c +++ b/src/tools/tor-fw-helper/tor-fw-helper-natpmp.c @@ -16,6 +16,9 @@ #include <stdio.h> #include <string.h> #include <errno.h> +#ifndef MS_WINDOWS +#include <arpa/inet.h> +#endif // debugging stuff #include <assert.h> |