mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
393 B

  1. --- slrn/src/mime.c~ 2002-11-01 13:32:34.000000000 +0100
  2. +++ slrn/src/mime.c 2003-11-21 18:39:34.000000000 +0100
  3. @@ -650,7 +650,7 @@
  4. l = a->lines;
  5. /* skip header and separator */
  6. - while (((l != NULL) && (l->flags & HEADER_LINE)) || l->buf[0] == '\0')
  7. + while ((l != NULL) && ((l->flags & HEADER_LINE) || l->buf[0] == '\0'))
  8. l = l->next;
  9. if (l == NULL) return;