summaryrefslogtreecommitdiff
path: root/net-mgmt/nagios-plugins/files/patch-plugins_sslutils.c
diff options
context:
space:
mode:
authorMathieu Arnold <mat@FreeBSD.org>2016-08-03 14:21:35 +0000
committerMathieu Arnold <mat@FreeBSD.org>2016-08-03 14:21:35 +0000
commitd462f7ed56b19a09201e92ccbb7110c3a96071fa (patch)
treef1776f9cd597a801ac61b9a83432c99559d59da9 /net-mgmt/nagios-plugins/files/patch-plugins_sslutils.c
parentUpdate to 3.20160728. (diff)
Update to 2.1.2.
Reported by: portscout Sponsored by: Absolight
Notes
Notes: svn path=/head/; revision=419525
Diffstat (limited to 'net-mgmt/nagios-plugins/files/patch-plugins_sslutils.c')
-rw-r--r--net-mgmt/nagios-plugins/files/patch-plugins_sslutils.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/net-mgmt/nagios-plugins/files/patch-plugins_sslutils.c b/net-mgmt/nagios-plugins/files/patch-plugins_sslutils.c
deleted file mode 100644
index 1c531d4ca98c..000000000000
--- a/net-mgmt/nagios-plugins/files/patch-plugins_sslutils.c
+++ /dev/null
@@ -1,16 +0,0 @@
---- plugins/sslutils.c.orig 2015-07-30 21:40:06 UTC
-+++ plugins/sslutils.c
-@@ -70,8 +70,13 @@ int np_net_ssl_init_with_hostname_versio
- #endif
- 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.")));
-+ return STATE_CRITICAL;
-+#else
- method = SSLv3_client_method();
- ssl_options = SSL_OP_NO_SSLv2 | SSL_OP_NO_TLSv1;
-+#endif
- break;
- default: /* Unsupported */
- printf("%s\n", _("CRITICAL - Unsupported SSL protocol version."));