From e11b29c50c985f86f730893c71b0f8bd6f26c33a Mon Sep 17 00:00:00 2001 From: Linus Torvalds Date: Wed, 18 May 2005 11:33:46 -0700 Subject: [PATCH] diff-helper: pass unrecognized lines through unmodified (and flush any pending renames) --- diff-helper.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/diff-helper.c b/diff-helper.c index 3ef57060..2877ddc4 100644 --- a/diff-helper.c +++ b/diff-helper.c @@ -268,11 +268,12 @@ int main(int ac, const char **av) { if (sb.eof) break; status = parse_diff_raw_output(sb.buf, av+1, ac-1, reverse); - if (status) - fprintf(stderr, "cannot parse %s\n", sb.buf); + if (status) { + flush_renames(av+1, ac-1, reverse); + printf("%s%c", sb.buf, line_termination); + } } - if (detect_rename) - flush_renames(av+1, ac-1, reverse); + flush_renames(av+1, ac-1, reverse); return 0; } -- 2.11.0