summaryrefslogtreecommitdiff
path: root/trailer.c
diff options
context:
space:
mode:
authorChristian Couder <christian.couder@gmail.com>2015-08-26 02:51:00 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-08-26 19:16:56 (GMT)
commit6262fe9ca3cd61d27ca5c5599ab46d166e5b23a2 (patch)
tree0f2b40dc19fb59d49e3369327957869f81dabd97 /trailer.c
parentdc5d553b5582e543f3151e43f9ae0df9831a4cc9 (diff)
downloadgit-6262fe9ca3cd61d27ca5c5599ab46d166e5b23a2.zip
git-6262fe9ca3cd61d27ca5c5599ab46d166e5b23a2.tar.gz
git-6262fe9ca3cd61d27ca5c5599ab46d166e5b23a2.tar.bz2
trailer: retitle a test and correct an in-comment message
Signed-off-by: Christian Couder <christian.couder@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'trailer.c')
-rw-r--r--trailer.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/trailer.c b/trailer.c
index f7d2713..a92ba53 100644
--- a/trailer.c
+++ b/trailer.c
@@ -748,7 +748,8 @@ static int find_trailer_start(struct strbuf **lines, int count)
/*
* Get the start of the trailers by looking starting from the end
* for a line with only spaces before lines with one separator.
- * The start cannot be the first line.
+ * The first line must not be analyzed as the others as it
+ * should be either the message title or a blank line.
*/
for (start = count - 1; start >= 1; start--) {
if (lines[start]->buf[0] == comment_line_char)