[PATCH] sslutils: remove superfluous parenthesis

Sebastian Herbszt herbszt at gmx.de
Sat Dec 20 20:58:22 CET 2014


Remove superfluous parenthesis.

Signed-off-by: Sebastian Herbszt <herbszt at gmx.de>
---
 plugins/sslutils.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/plugins/sslutils.c b/plugins/sslutils.c
index d0ae474..2fdb6a9 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
 		break;
 	case 2: /* SSLv2 protocol */
 #if defined(USE_GNUTLS) || defined(OPENSSL_NO_SSL2)
-		printf(("%s\n", _("CRITICAL - SSL protocol version 2 is not supported by your SSL library.")));
+		printf("%s\n", _("CRITICAL - SSL protocol version 2 is not supported by your SSL library."));
 		return STATE_CRITICAL;
 #else
 		method = SSLv2_client_method();
-- 
2.1.0




More information about the Devel mailing list