[tor-commits] [tor/master] Make sure MAX_DNS_LABEL_SIZE is defined

nickm at torproject.org nickm at torproject.org
Tue Jan 10 14:30:09 UTC 2012


commit 2367f7e5594c5b0aab51f87b8221e2b0235ed0ed
Author: Sebastian Hahn <sebastian at torproject.org>
Date:   Tue Jan 10 06:14:35 2012 +0100

    Make sure MAX_DNS_LABEL_SIZE is defined
    
    MAX_DNS_LABEL_SIZE was only defined for old versions of openssl, which
    broke the build. Spotted by xiando. Fixes bug 4413; not in any released
    version.
---
 src/common/crypto.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/common/crypto.c b/src/common/crypto.c
index 7edc7f2..d1d823d 100644
--- a/src/common/crypto.c
+++ b/src/common/crypto.c
@@ -69,6 +69,9 @@
 #define DISABLE_ENGINES
 #endif
 
+/** Longest recognized */
+#define MAX_DNS_LABEL_SIZE 63
+
 #if OPENSSL_VERSION_NUMBER < 0x00908000l
 /** @{ */
 /** On OpenSSL versions before 0.9.8, there is no working SHA256
@@ -82,9 +85,6 @@
 #include "sha256.c"
 #define SHA256_Final(a,b) sha256_done(b,a)
 
-/** Longest recognized */
-#define MAX_DNS_LABEL_SIZE 63
-
 static unsigned char *
 SHA256(const unsigned char *m, size_t len, unsigned char *d)
 {



More information about the tor-commits mailing list