tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit f83b417bf819ef0cc5f6ff31dd683a53cd7f90f2
parent 727f1676d68fca00f2f40f166b5afda3a5728dc4
Author: Nick Mathewson <nickm@torproject.org>
Date:   Thu,  2 Aug 2018 08:41:33 -0400

Suppress strict-prototypes warning in crypto_nss_mgt.c

Diffstat:
Msrc/lib/crypt_ops/crypto_nss_mgt.c | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/src/lib/crypt_ops/crypto_nss_mgt.c b/src/lib/crypt_ops/crypto_nss_mgt.c @@ -15,6 +15,7 @@ #include "lib/log/log.h" #include "lib/log/util_bug.h" +DISABLE_GCC_WARNING(strict-prototypes) #include <nss.h> #include <pk11func.h> #include <ssl.h> @@ -22,6 +23,7 @@ #include <prerror.h> #include <prtypes.h> #include <prinit.h> +ENABLE_GCC_WARNING(strict-prototypes) const char * crypto_nss_get_version_str(void)