talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit 0899c770a683f56b65bc64249421403a8e6ac7bf
parent 6dfe487100b64f7e5ece4c874d7e8c2b72369e4a
Author: Andreas Bierfert <andreas.bierfert@lowlatency.de>
Date:   Wed, 29 Mar 2017 09:54:27 +0200

Fix bug #3795 ‘typo in utils comparison’

Fix a typo in utils.c which causes a wrong comparison.

Diffstat:
Msrc/common/utils.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/common/utils.c b/src/common/utils.c @@ -4333,7 +4333,7 @@ search_again: ep_ += 3; /* go to matching '>' (or next non-rfc822 char, like \n) */ - for (; *ep_ != '>' && *ep != '\0' && IS_RFC822_CHAR(*ep_); ep_++) + for (; *ep_ != '>' && *ep_ != '\0' && IS_RFC822_CHAR(*ep_); ep_++) ; /* include the bracket */