summaryrefslogtreecommitdiff
path: root/security/ssh/patches/patch-bc
diff options
context:
space:
mode:
Diffstat (limited to 'security/ssh/patches/patch-bc')
-rw-r--r--security/ssh/patches/patch-bc16
1 files changed, 0 insertions, 16 deletions
diff --git a/security/ssh/patches/patch-bc b/security/ssh/patches/patch-bc
deleted file mode 100644
index ef35ff003df..00000000000
--- a/security/ssh/patches/patch-bc
+++ /dev/null
@@ -1,16 +0,0 @@
-$NetBSD: patch-bc,v 1.1 1999/12/25 05:28:37 kim Exp $
-
---- match.c.orig Wed May 12 07:19:27 1999
-+++ match.c Fri Dec 24 21:50:42 1999
-@@ -129,6 +129,11 @@
- is_ip_pattern = 0;
- break;
- }
-+ for(p = pattern; *p; p++)
-+ if (!(isxdigit(*p) || *p == ':' || *p == '?' || *p == '*'))
-+ break;
-+ if (ip && !*p)
-+ is_ip_pattern = 1;
- if (is_ip_pattern)
- {
- return match_pattern(ip, pattern);