[Commits] [SCM] claws branch, master, updated. 3.15.0-51-g0899c77
mones at claws-mail.org
mones at claws-mail.org
Sun May 14 11:51:08 CEST 2017
The branch, master has been updated
via 0899c770a683f56b65bc64249421403a8e6ac7bf (commit)
from 6dfe487100b64f7e5ece4c874d7e8c2b72369e4a (commit)
Summary of changes:
src/common/utils.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
- Log -----------------------------------------------------------------
commit 0899c770a683f56b65bc64249421403a8e6ac7bf
Author: Andreas Bierfert <andreas.bierfert at lowlatency.de>
Date: Wed Mar 29 09:54:27 2017 +0200
Fix bug #3795 ‘typo in utils comparison’
Fix a typo in utils.c which causes a wrong comparison.
diff --git a/src/common/utils.c b/src/common/utils.c
index bf14edc..d878392 100644
--- 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 */
-----------------------------------------------------------------------
hooks/post-receive
--
Claws Mail
More information about the Commits
mailing list