summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Wagner <waja@cyconet.org>2015-10-04 13:11:40 (GMT)
committerJan Wagner <waja@cyconet.org>2015-10-04 13:16:15 (GMT)
commit8e661a3bd6c6892ed4db926eab769c167b0e9091 (patch)
tree0215774c2ada66f67f3de78b395ee8b4c7c75884
parent0a406d8dcec816a94d283b872755b28f219bea2e (diff)
downloadmonitoring-plugins-8e661a3bd6c6892ed4db926eab769c167b0e9091.tar.gz
sslutils: Remove superfluous parenthesis for sslv3 function toorefs/pull/1362/headrefs/pull/1314/head
-rw-r--r--plugins/sslutils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/sslutils.c b/plugins/sslutils.c
index 494a1ec..f34c3d7 100644
--- a/plugins/sslutils.c
+++ b/plugins/sslutils.c
@@ -67,7 +67,7 @@ int np_net_ssl_init_with_hostname_version_and_cert(int sd, char *host_name, int
67 break; 67 break;
68 case 3: /* SSLv3 protocol */ 68 case 3: /* SSLv3 protocol */
69#if defined(OPENSSL_NO_SSL3) 69#if defined(OPENSSL_NO_SSL3)
70 printf(("%s\n", _("CRITICAL - SSL protocol version 3 is not supported by your SSL library."))); 70 printf("%s\n", _("CRITICAL - SSL protocol version 3 is not supported by your SSL library."));
71 return STATE_CRITICAL; 71 return STATE_CRITICAL;
72#else 72#else
73 method = SSLv3_client_method(); 73 method = SSLv3_client_method();