summaryrefslogtreecommitdiff
path: root/src/common/tortls.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2016-05-27 11:25:42 -0400
committerNick Mathewson <nickm@torproject.org>2016-05-27 11:25:42 -0400
commit0df2c5677a79aafc32591b15ca07d25c638b68cc (patch)
treebc6b55ce1fd871f8ac9361263ed3609f7b636f2e /src/common/tortls.c
parent0279e4847352111254503159685487e5e1f58681 (diff)
downloadtor-0df2c5677a79aafc32591b15ca07d25c638b68cc.tar.gz
tor-0df2c5677a79aafc32591b15ca07d25c638b68cc.zip
Use ENABLE_GCC_WARNING and DISABLE_GCC_WARNING in tortls.c
Previously we'd done this ad hoc.
Diffstat (limited to 'src/common/tortls.c')
-rw-r--r--src/common/tortls.c19
1 files changed, 5 insertions, 14 deletions
diff --git a/src/common/tortls.c b/src/common/tortls.c
index 4ffc672546..fc684189b1 100644
--- a/src/common/tortls.c
+++ b/src/common/tortls.c
@@ -24,17 +24,12 @@
#include <ws2tcpip.h>
#endif
-#ifdef __GNUC__
-#define GCC_VERSION (__GNUC__ * 100 + __GNUC_MINOR__)
-#endif
+#include "compat.h"
-#if __GNUC__ && GCC_VERSION >= 402
-#if GCC_VERSION >= 406
-#pragma GCC diagnostic push
-#endif
+#if GCC_VERSION >= 402
/* Some versions of OpenSSL declare SSL_get_selected_srtp_profile twice in
* srtp.h. Suppress the GCC warning so we can build with -Wredundant-decl. */
-#pragma GCC diagnostic ignored "-Wredundant-decls"
+DISABLE_GCC_WARNING(redundant-decls)
#endif
#include <openssl/opensslv.h>
@@ -53,12 +48,8 @@
#include <openssl/bn.h>
#include <openssl/rsa.h>
-#if __GNUC__ && GCC_VERSION >= 402
-#if GCC_VERSION >= 406
-#pragma GCC diagnostic pop
-#else
-#pragma GCC diagnostic warning "-Wredundant-decls"
-#endif
+#if GCC_VERSION >= 402
+ENABLE_GCC_WARNING(redundant-decls)
#endif
#ifdef USE_BUFFEREVENTS