summaryrefslogtreecommitdiff
path: root/security/putty/patches/patch-af
diff options
context:
space:
mode:
Diffstat (limited to 'security/putty/patches/patch-af')
-rw-r--r--security/putty/patches/patch-af13
1 files changed, 0 insertions, 13 deletions
diff --git a/security/putty/patches/patch-af b/security/putty/patches/patch-af
deleted file mode 100644
index 5103591a951..00000000000
--- a/security/putty/patches/patch-af
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-af,v 1.2 2005/04/13 16:45:46 rillig Exp $
-
---- charset/mimeenc.c.orig 2005-04-06 23:14:37.000000000 +0200
-+++ charset/mimeenc.c 2005-04-06 23:14:57.000000000 +0200
-@@ -197,7 +197,7 @@
- p = name;
- q = mimeencs[i].name;
- while (*p || *q) {
-- if (tolower(*p) != tolower(*q))
-+ if (tolower((unsigned char)*p) != tolower((unsigned char)*q))
- break;
- p++; q++;
- }