summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Herbszt <herbszt@gmx.de>2014-12-20 19:58:22 (GMT)
committerJan Wagner <waja@cyconet.org>2015-10-04 13:09:36 (GMT)
commit0a406d8dcec816a94d283b872755b28f219bea2e (patch)
tree87e4ff041cba3b842f7798e25c02d35fc0b86f35
parent2d677b19ed34ff8171dbf07fb7744e560737d143 (diff)
downloadmonitoring-plugins-0a406d8dcec816a94d283b872755b28f219bea2e.tar.gz
sslutils: remove superfluous parenthesis
Remove superfluous parenthesis. Signed-off-by: Sebastian Herbszt <herbszt@gmx.de>
-rw-r--r--plugins/sslutils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/sslutils.c b/plugins/sslutils.c
index 4933dd0..494a1ec 100644
--- a/plugins/sslutils.c
+++ b/plugins/sslutils.c
@@ -59,7 +59,7 @@ int np_net_ssl_init_with_hostname_version_and_cert(int sd, char *host_name, int
59 break; 59 break;
60 case 2: /* SSLv2 protocol */ 60 case 2: /* SSLv2 protocol */
61#if defined(USE_GNUTLS) || defined(OPENSSL_NO_SSL2) 61#if defined(USE_GNUTLS) || defined(OPENSSL_NO_SSL2)
62 printf(("%s\n", _("CRITICAL - SSL protocol version 2 is not supported by your SSL library."))); 62 printf("%s\n", _("CRITICAL - SSL protocol version 2 is not supported by your SSL library."));
63 return STATE_CRITICAL; 63 return STATE_CRITICAL;
64#else 64#else
65 method = SSLv2_client_method(); 65 method = SSLv2_client_method();