summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2009-10-14 11:51:03 -0700
committerJunio C Hamano <gitster@pobox.com>2009-10-14 23:47:03 -0700
commitfe0a3cb23c7930be419937825591388465ceb47f (patch)
tree722c7746cc498a2d190daef0716e8a0e2aa2a369
parentba7e81430a32614982172c7064c01db43f55b4bb (diff)
downloadgit-fe0a3cb23c7930be419937825591388465ceb47f.tar.gz
info/grafts: allow trailing whitespaces at the end of line
When creating an info/grafts under windows, one typically gets a CRLF file. There is no good reason to forbid trailing CR at the end of the line (for that matter, any trailing whitespaces); the code allowed only LF simply because that was good enough for the platforms with LF line endings. Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--commit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/commit.c b/commit.c
index aa3b35b6a8..eee5ab803b 100644
--- a/commit.c
+++ b/commit.c
@@ -136,8 +136,8 @@ struct commit_graft *read_graft_line(char *buf, int len)
int i;
struct commit_graft *graft = NULL;
- if (buf[len-1] == '\n')
- buf[--len] = 0;
+ while (len && isspace(buf[len-1]))
+ buf[--len] = '\0';
if (buf[0] == '#' || buf[0] == '\0')
return NULL;
if ((len + 1) % 41) {