Don\'t use ||= operator
authorTom Kistner <tom@duncanthrax.net>
Thu, 15 Oct 2009 07:23:56 +0000 (07:23 +0000)
committerTom Kistner <tom@duncanthrax.net>
Thu, 15 Oct 2009 07:23:56 +0000 (07:23 +0000)
src/src/lookups/lsearch.c

index ba2c673fadfc9c558e3af936b080f90c91b3da4b..8befea0ff1607ecb8ec83889d37fbc58eb32bb18 100644 (file)
@@ -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++;