aboutsummaryrefslogtreecommitdiffstats
path: root/commit.h
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2024-02-08 16:22:09 -0800
committerJunio C Hamano <gitster@pobox.com>2024-02-08 16:22:09 -0800
commit541d0d75e781fad5761414d7a5500b8840f3e5bb (patch)
treeefd22786b282e2381297e801cb42be49226a6cf9 /commit.h
parentedf4c0d42b75fb1a94a21db75d020472cc0a6cf2 (diff)
parentde7c27a1869953158436e60542ea556d78c3f4c2 (diff)
downloadgit-541d0d75e781fad5761414d7a5500b8840f3e5bb.tar.gz
Merge branch 'la/trailer-cleanups' into maint-2.43
Code clean-up. * la/trailer-cleanups: trailer: use offsets for trailer_start/trailer_end trailer: find the end of the log message commit: ignore_non_trailer computes number of bytes to ignore
Diffstat (limited to 'commit.h')
-rw-r--r--commit.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/commit.h b/commit.h
index 28928833c5..1cc872f225 100644
--- a/commit.h
+++ b/commit.h
@@ -294,8 +294,8 @@ const char *find_header_mem(const char *msg, size_t len,
const char *find_commit_header(const char *msg, const char *key,
size_t *out_len);
-/* Find the end of the log message, the right place for a new trailer. */
-size_t ignore_non_trailer(const char *buf, size_t len);
+/* Find the number of bytes to ignore from the end of a log message. */
+size_t ignored_log_message_bytes(const char *buf, size_t len);
typedef int (*each_mergetag_fn)(struct commit *commit, struct commit_extra_header *extra,
void *cb_data);