diff options
author | Jan Wagner <waja@cyconet.org> | 2015-10-04 15:11:40 +0200 |
---|---|---|
committer | Jan Wagner <waja@cyconet.org> | 2015-10-04 15:16:15 +0200 |
commit | 8e661a3bd6c6892ed4db926eab769c167b0e9091 (patch) | |
tree | 0215774c2ada66f67f3de78b395ee8b4c7c75884 /plugins | |
parent | 0a406d8dcec816a94d283b872755b28f219bea2e (diff) | |
download | monitoring-plugins-8e661a3bd6c6892ed4db926eab769c167b0e9091.tar.gz |
sslutils: Remove superfluous parenthesis for sslv3 function too
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/sslutils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/sslutils.c b/plugins/sslutils.c index 494a1ece..f34c3d79 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 break; case 3: /* SSLv3 protocol */ #if defined(OPENSSL_NO_SSL3) - printf(("%s\n", _("CRITICAL - SSL protocol version 3 is not supported by your SSL library."))); + printf("%s\n", _("CRITICAL - SSL protocol version 3 is not supported by your SSL library.")); return STATE_CRITICAL; #else method = SSLv3_client_method(); |