diff options
author | Tom Kistner <tom@duncanthrax.net> | 2009-10-15 07:23:56 +0000 |
---|---|---|
committer | Tom Kistner <tom@duncanthrax.net> | 2009-10-15 07:23:56 +0000 |
commit | 31ffd7bf6123060171f2748083ea8fcfed5124c1 (patch) | |
tree | f538d7c31c2aed3ce9ee3241ab0eba1e9f602992 /src | |
parent | f3766eb5a200d0deb99dc3f096ced249727940cd (diff) |
Don\'t use ||= operator
Diffstat (limited to 'src')
-rw-r--r-- | src/src/lookups/lsearch.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/src/lookups/lsearch.c b/src/src/lookups/lsearch.c index ba2c673fa..8befea0ff 100644 --- a/src/src/lookups/lsearch.c +++ b/src/src/lookups/lsearch.c @@ -1,4 +1,4 @@ -/* $Cambridge: exim/src/src/lookups/lsearch.c,v 1.9 2009/10/14 13:43:40 nm4 Exp $ */ +/* $Cambridge: exim/src/src/lookups/lsearch.c,v 1.10 2009/10/15 07:23:56 tom Exp $ */ /************************************************* * Exim - an Internet mail transport agent * @@ -287,7 +287,7 @@ for (last_was_eol = TRUE; if (last_was_eol) { - this_is_comment ||= (buffer[0] == 0 || buffer[0] == '#'); + this_is_comment = (this_is_comment || (buffer[0] == 0 || buffer[0] == '#')); if (this_is_comment) continue; if (!isspace((uschar)buffer[0])) break; while (isspace((uschar)*s)) s++; |