summaryrefslogtreecommitdiff
path: root/security/p5-Crypt-OpenSSL-X509/files/patch-X509.xs
diff options
context:
space:
mode:
authorSunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>2017-02-28 09:47:47 +0000
committerSunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>2017-02-28 09:47:47 +0000
commitfe6906623dad076e088a43d985e703745c025564 (patch)
tree0f4c03994fa8aa9824d0f2d4d2050ac266fa397e /security/p5-Crypt-OpenSSL-X509/files/patch-X509.xs
parentUpdate to 1.19 (diff)
Update to 1.807
- Use real PORTVERSION - Use = instead of += for MAKE_ARGS - Use USES=ssl - Sort PLIST Changes: http://search.cpan.org/dist/Crypt-OpenSSL-X509/Changes
Diffstat (limited to 'security/p5-Crypt-OpenSSL-X509/files/patch-X509.xs')
-rw-r--r--security/p5-Crypt-OpenSSL-X509/files/patch-X509.xs20
1 files changed, 0 insertions, 20 deletions
diff --git a/security/p5-Crypt-OpenSSL-X509/files/patch-X509.xs b/security/p5-Crypt-OpenSSL-X509/files/patch-X509.xs
deleted file mode 100644
index e32c9ce0e86a..000000000000
--- a/security/p5-Crypt-OpenSSL-X509/files/patch-X509.xs
+++ /dev/null
@@ -1,20 +0,0 @@
---- X509.xs.orig 2013-12-01 17:14:25 UTC
-+++ X509.xs
-@@ -181,7 +181,7 @@ static HV* hv_exts(X509* x509, int no_na
- sv_2mortal((SV*)RETVAL);
- c = X509_get_ext_count(x509);
-
-- if ( ! c > 0 ) {
-+ if ( c <= 0 ) {
- croak("No extensions found\n");
- }
-
-@@ -860,7 +860,7 @@ extension(x509, i)
-
- c = X509_get_ext_count(x509);
-
-- if (!c > 0) {
-+ if (c <= 0) {
- croak("No extensions found\n");
- } else if (i >= c || i < 0) {
- croak("Requested extension index out of range\n");