Explorar o código

sslutils: Remove superfluous parenthesis for sslv3 function too

Jan Wagner %!s(int64=10) %!d(string=hai) anos
pai
achega
8e661a3bd6
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      plugins/sslutils.c

+ 1 - 1
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();