On Fri, May 25, 2007 at 11:50:08AM +0100, Andy Parkins wrote: > + /* > + * Throw away characters until either > + * - we reach a "$" > + * - we run out of bytes (rem == 0) > + */ > do { > - ch = *cp++; > + ch = *cp; > if (ch == '$') > break; > + cp++; > rem--; > } while (rem); Can this loop throw away newlines? Removing newlines seems like a bad idea. - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html