@@ -1312,7 +1312,7 @@ static void get_commit_info(struct am_state *state, struct commit *commit)
buffer = logmsg_reencode(commit, NULL, get_commit_output_encoding());
- ident_line = find_commit_header(buffer, "author", &ident_len);
+ ident_line = find_header(buffer, "author", &ident_len);
if (!ident_line)
die(_("missing author line in commit %s"),
oid_to_hex(&commit->object.oid));
@@ -614,7 +614,7 @@ static void determine_author_info(struct strbuf *author_ident)
size_t len;
const char *a;
- a = find_commit_header(author_message_buffer, "author", &len);
+ a = find_header(author_message_buffer, "author", &len);
if (!a)
die(_("commit '%s' lacks author header"), author_message);
if (split_ident_line(&ident, a, len) < 0)
@@ -581,13 +581,13 @@ static char *prepare_push_cert_nonce(const char *path, timestamp_t stamp)
return strbuf_detach(&buf, NULL);
}
-static char *find_header_value(const char *msg, const char *key, const char **next_line)
+static char *find_header_nextline(const char *msg, const char *key, const char **next_line)
{
size_t out_len;
const char *eol;
char *ret;
- const char *val = find_commit_header(msg, key, &out_len);
+ const char *val = find_header(msg, key, &out_len);
if (val == NULL)
return NULL;
@@ -619,7 +619,7 @@ static int constant_memequal(const char *a, const char *b, size_t n)
static const char *check_nonce(const char *buf, size_t len)
{
- char *nonce = find_header_value(buf, "nonce", NULL);
+ char *nonce = find_header_nextline(buf, "nonce", NULL);
timestamp_t stamp, ostamp;
char *bohmac, *expect = NULL;
@@ -725,7 +725,7 @@ static int check_cert_push_options(const struct string_list *push_options)
if (!len)
return 1;
- while ((option = find_header_value(buf, "push-option", &next_line))) {
+ while ((option = find_header_nextline(buf, "push-option", &next_line))) {
buf = next_line;
options_seen++;
if (options_seen > push_options->nr
@@ -734,7 +734,7 @@ void record_author_date(struct author_date_slab *author_date,
char *date_end;
timestamp_t date;
- ident_line = find_commit_header(buffer, "author", &ident_len);
+ ident_line = find_header(buffer, "author", &ident_len);
if (!ident_line)
goto fail_exit; /* no author line */
if (split_ident_line(&ident, ident_line, ident_len) ||
@@ -1631,7 +1631,7 @@ struct commit_list **commit_list_append(struct commit *commit,
return &new_commit->next;
}
-const char *find_commit_header(const char *msg, const char *key, size_t *out_len)
+const char *find_header(const char *msg, const char *key, size_t *out_len)
{
int key_len = strlen(key);
const char *line = msg;
@@ -296,7 +296,7 @@ void free_commit_extra_headers(struct commit_extra_header *extra);
* Note that some headers (like mergetag) may be multi-line. It is the caller's
* responsibility to parse further in this case!
*/
-const char *find_commit_header(const char *msg, const char *key,
+const char *find_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. */
@@ -597,7 +597,7 @@ static int parse_payload_metadata(struct signature_check *sigc)
BUG("invalid value for sigc->payload_type");
}
- ident_line = find_commit_header(sigc->payload, signer_header, &ident_len);
+ ident_line = find_header(sigc->payload, signer_header, &ident_len);
if (!ident_line || !ident_len)
return 1;
@@ -633,7 +633,7 @@ static void add_merge_info(const struct pretty_print_context *pp,
static char *get_header(const char *msg, const char *key)
{
size_t len;
- const char *v = find_commit_header(msg, key, &len);
+ const char *v = find_header(msg, key, &len);
return v ? xmemdupz(v, len) : NULL;
}
@@ -912,7 +912,7 @@ static char *get_author(const char *message)
size_t len;
const char *a;
- a = find_commit_header(message, "author", &len);
+ a = find_header(message, "author", &len);
if (a)
return xmemdupz(a, len);
@@ -44,7 +44,7 @@ static char *get_author(const char *message)
size_t len;
const char *a;
- a = find_commit_header(message, "author", &len);
+ a = find_header(message, "author", &len);
if (a)
return xmemdupz(a, len);