aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2001-07-07 18:13:52 +0000
committerEric S. Raymond <esr@thyrsus.com>2001-07-07 18:13:52 +0000
commit28246f879f681d83be8653a5bc7aff8bb16a45eb (patch)
tree14eba9b4a089531aba014edd3a74901e7543deff
parenta7075ed7455619934e9d32ab2b0b466eed7c7e60 (diff)
downloadfetchmail-28246f879f681d83be8653a5bc7aff8bb16a45eb.tar.gz
fetchmail-28246f879f681d83be8653a5bc7aff8bb16a45eb.tar.bz2
fetchmail-28246f879f681d83be8653a5bc7aff8bb16a45eb.zip
Close escaping bug.
svn path=/trunk/; revision=3408
-rw-r--r--rfc822.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rfc822.c b/rfc822.c
index 5f8e21b7..4fec9941 100644
--- a/rfc822.c
+++ b/rfc822.c
@@ -152,7 +152,7 @@ const unsigned char *host; /* server hostname */
bscount = 0;
for (bp = from - 1; *bp == '\\'; bp--)
bscount++;
- if (bscount % 2)
+ if (!(bscount % 2))
state = 1;
}
break;