In case of empty messages git-mailinfo ignores the "---"
line adding dirty stuff in commit message otherwise empty

Signed-off-by: Marco Costalba <[EMAIL PROTECTED]>

---

 tools/mailinfo.c |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

1ebfddf05e4655811157028091d03dfce39cc4f0
diff --git a/tools/mailinfo.c b/tools/mailinfo.c
--- a/tools/mailinfo.c
+++ b/tools/mailinfo.c
@@ -273,6 +273,12 @@ int main(int argc, char ** argv)
        }
        while (1) {
                int len = read_one_header_line(line, sizeof(line), stdin);
+               /* Check for empty messages */
+               if (!memcmp("---", line, 3)) {
+                       line[len] = '\n';
+                       handle_rest();
+                       break;
+               }
                if (!len) {
                        handle_body();
                        break;




                
____________________________________________________
Start your day with Yahoo! - make it your home page 
http://www.yahoo.com/r/hs 
 
-
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to