summaryrefslogtreecommitdiff
path: root/security/putty/patches/patch-ae
diff options
context:
space:
mode:
Diffstat (limited to 'security/putty/patches/patch-ae')
-rw-r--r--security/putty/patches/patch-ae13
1 files changed, 0 insertions, 13 deletions
diff --git a/security/putty/patches/patch-ae b/security/putty/patches/patch-ae
deleted file mode 100644
index ef6b31fc645..00000000000
--- a/security/putty/patches/patch-ae
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ae,v 1.2 2005/04/13 16:45:46 rillig Exp $
-
---- charset/localenc.c.orig Tue Apr 5 21:37:48 2005
-+++ charset/localenc.c Tue Apr 12 10:29:00 2005
-@@ -101,7 +101,7 @@ int charset_from_localenc(const char *na
- p = name;
- q = localencs[i].name;
- while (*p || *q) {
-- if (tolower(*p) != tolower(*q))
-+ if (tolower((unsigned char)*p) != tolower((unsigned char)*q))
- break;
- p++; q++;
- }