diff options
author | cypherpunks <cypherpunks@torproject.org> | 2016-09-01 17:50:38 +0000 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2017-02-03 09:37:39 -0500 |
commit | 27df23abb675ffeb198bf0c1cc85c4baed77a988 (patch) | |
tree | 9fcb0bbb384188f3be58409bcb7fe5f23cbc3a95 /src/ext/trunnel | |
parent | 0f79fb51e5653cbc82a0066423c833cafb656542 (diff) | |
download | tor-27df23abb675ffeb198bf0c1cc85c4baed77a988.tar.gz tor-27df23abb675ffeb198bf0c1cc85c4baed77a988.zip |
Use the standard OpenBSD preprocessor definition
Diffstat (limited to 'src/ext/trunnel')
-rw-r--r-- | src/ext/trunnel/trunnel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ext/trunnel/trunnel.c b/src/ext/trunnel/trunnel.c index a008fb9f31..8f72351277 100644 --- a/src/ext/trunnel/trunnel.c +++ b/src/ext/trunnel/trunnel.c @@ -31,7 +31,7 @@ # define IS_LITTLE_ENDIAN # endif #else -# if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) +# if defined(__FreeBSD__) || defined(__NetBSD__) || defined(OpenBSD) # include <sys/endian.h> # else # include <endian.h> |