mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-05 22:43:24 +00:00
d0094e951a
PR: ports/16024 Submitted by: MIHIRA Yoshiro <sanpei@sanpei.org>
13 lines
421 B
Plaintext
13 lines
421 B
Plaintext
--- 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]) {
|