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, 13 insertions, 0 deletions
diff --git a/security/putty/patches/patch-af b/security/putty/patches/patch-af
new file mode 100644
index 00000000000..ae68d6189c4
--- /dev/null
+++ b/security/putty/patches/patch-af
@@ -0,0 +1,13 @@
+$NetBSD: patch-af,v 1.1 2005/04/06 21:51:13 xtraeme 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((int)*p) != tolower((int)*q))
+ break;
+ p++; q++;
+ }