diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2001-07-07 18:13:52 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2001-07-07 18:13:52 +0000 |
commit | 28246f879f681d83be8653a5bc7aff8bb16a45eb (patch) | |
tree | 14eba9b4a089531aba014edd3a74901e7543deff | |
parent | a7075ed7455619934e9d32ab2b0b466eed7c7e60 (diff) | |
download | fetchmail-28246f879f681d83be8653a5bc7aff8bb16a45eb.tar.gz fetchmail-28246f879f681d83be8653a5bc7aff8bb16a45eb.tar.bz2 fetchmail-28246f879f681d83be8653a5bc7aff8bb16a45eb.zip |
Close escaping bug.
svn path=/trunk/; revision=3408
-rw-r--r-- | rfc822.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |