diff options
Diffstat (limited to 'japanese/iv/files/patch-bp')
-rw-r--r-- | japanese/iv/files/patch-bp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/japanese/iv/files/patch-bp b/japanese/iv/files/patch-bp new file mode 100644 index 000000000000..4d17ca0c980b --- /dev/null +++ b/japanese/iv/files/patch-bp @@ -0,0 +1,12 @@ +--- src/bin/mailbox/main.c.org Sat Sep 12 01:19:22 1992 ++++ src/bin/mailbox/main.c Mon Jan 3 14:27:04 2000 +@@ -453,7 +453,8 @@ + if (atp != nil) { + char* dotp = strchr(atp, '.'); + if (dotp != nil) { +- for (int i = 0; i < strlen(mail_domain); ++i) { ++ int i; ++ for (i = 0; i < strlen(mail_domain); ++i) { + char c = dotp[i]; + c = isupper(c) ? c - 'A' + 'a' : c; + if (c != mail_domain[i]) { |