On Sun, Sep 14, 2008 at 9:53 AM, Lars Hjemli <hjemli@xxxxxxxxx> wrote: > + // skip extra blank lines between headers and message body > + while (p && *p == '\n') { > + p = strchr(p, '\n'); > + if (p) > + p++; > + } Btw, this is just silly so I've changed it: while (p && *p == '\n') p++; The wip-branch at http://hjemli.net/git/cgit has a fixed-up patch. -- larsh -- 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