summaryrefslogtreecommitdiff
path: root/chat/i2cbd/patches
diff options
context:
space:
mode:
authorjwise <jwise@pkgsrc.org>2006-04-30 23:36:09 +0000
committerjwise <jwise@pkgsrc.org>2006-04-30 23:36:09 +0000
commit58a19a9f808cfe514ab021c3dd4cf7cc232aa120 (patch)
tree8e238b68b0a2cc5ee679a91c2525a05365f8e498 /chat/i2cbd/patches
parente7787b9be6ede9bbb794161972ad792502de94fe (diff)
downloadpkgsrc-58a19a9f808cfe514ab021c3dd4cf7cc232aa120.tar.gz
Update for i2cbd-2.0_BETA3. Changes since i2cbd-2.0_BETA1 (last pkgsrc
version): * command parsing and buffer handling fixes from SODA Noriyuki
Diffstat (limited to 'chat/i2cbd/patches')
-rw-r--r--chat/i2cbd/patches/patch-ad13
-rw-r--r--chat/i2cbd/patches/patch-ae22
2 files changed, 0 insertions, 35 deletions
diff --git a/chat/i2cbd/patches/patch-ad b/chat/i2cbd/patches/patch-ad
deleted file mode 100644
index 59824a9631c..00000000000
--- a/chat/i2cbd/patches/patch-ad
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ad,v 1.1 2004/12/30 11:10:22 agc Exp $
-
---- src/msgs.c 2004/12/30 11:06:20 1.1
-+++ src/msgs.c 2004/12/30 11:06:33
-@@ -207,7 +207,7 @@
- access_file = open(ACCESS_FILE, O_RDONLY);
- if (access_file >= 0) {
- while ((i = read(access_file, &c, 1)) > 0) {
-- if (isspace(c)) {
-+ if (isspace((unsigned char)c)) {
- ucaseit(three);
- if (!fnmatch(three, one, 0)) {
- snprintf(line, LINE_SIZE, "Login refused for %s", one);
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 *