summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
Diffstat (limited to 'src/common')
-rw-r--r--src/common/address.c1
-rw-r--r--src/common/crypto.c3
2 files changed, 3 insertions, 1 deletions
diff --git a/src/common/address.c b/src/common/address.c
index c734c6fbf4..e56465f0ba 100644
--- a/src/common/address.c
+++ b/src/common/address.c
@@ -1696,3 +1696,4 @@ tor_addr_hostname_is_local(const char *name)
!strcasecmp(name, "local") ||
!strcasecmpend(name, ".local");
}
+
diff --git a/src/common/crypto.c b/src/common/crypto.c
index 9073d8179d..a69e6c5cb8 100644
--- a/src/common/crypto.c
+++ b/src/common/crypto.c
@@ -69,7 +69,8 @@
/** Longest recognized */
#define MAX_DNS_LABEL_SIZE 63
-#if OPENSSL_VERSION_NUMBER < OPENSSL_V_SERIES(0,9,8) && !defined(RUNNING_DOXYGEN)
+#if OPENSSL_VERSION_NUMBER < OPENSSL_V_SERIES(0,9,8) && \
+ !defined(RUNNING_DOXYGEN)
/** @{ */
/** On OpenSSL versions before 0.9.8, there is no working SHA256
* implementation, so we use Tom St Denis's nice speedy one, slightly adapted