summaryrefslogtreecommitdiff
path: root/chat/i2cbd/patches/patch-ae
diff options
context:
space:
mode:
Diffstat (limited to 'chat/i2cbd/patches/patch-ae')
-rw-r--r--chat/i2cbd/patches/patch-ae22
1 files changed, 0 insertions, 22 deletions
diff --git a/chat/i2cbd/patches/patch-ae b/chat/i2cbd/patches/patch-ae
deleted file mode 100644
index 17bcbfa0d98..00000000000
--- a/chat/i2cbd/patches/patch-ae
+++ /dev/null
@@ -1,22 +0,0 @@
-$NetBSD: patch-ae,v 1.1 2004/12/30 11:10:22 agc Exp $
-
---- src/strings.c 2004/12/30 11:07:38 1.1
-+++ src/strings.c 2004/12/30 11:08:03
-@@ -78,7 +78,7 @@
- lcaseit(char *s)
- {
- for (; *s; s++)
-- *s = tolower(*s);
-+ *s = tolower((unsigned char)*s);
- }
-
- /* convert a string to upper case */
-@@ -86,7 +86,7 @@
- ucaseit(char *s)
- {
- for (; *s; s++)
-- *s = toupper(*s);
-+ *s = toupper((unsigned char)*s);
- }
-
- char *