diff options
author | Junio C Hamano <gitster@pobox.com> | 2020-02-17 22:22:17 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-02-17 22:22:17 +0100 |
commit | 9f3f38769d49255d3fbf97f35a0dec591de17db3 (patch) | |
tree | d0b4e0ef5aab675c75932a5cf888c4f32397497f /commit.c | |
parent | Merge branch 'rs/parse-options-concat-dup' (diff) | |
parent | mailinfo: don't insert header prefix for handle_content_type() (diff) | |
download | git-9f3f38769d49255d3fbf97f35a0dec591de17db3.tar.xz git-9f3f38769d49255d3fbf97f35a0dec591de17db3.zip |
Merge branch 'rs/strbuf-insertstr'
Code clean-up.
* rs/strbuf-insertstr:
mailinfo: don't insert header prefix for handle_content_type()
strbuf: add and use strbuf_insertstr()
Diffstat (limited to 'commit.c')
-rw-r--r-- | commit.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -993,7 +993,7 @@ static int do_sign_commit(struct strbuf *buf, const char *keyid) strbuf_insert(buf, inspos, gpg_sig_header, gpg_sig_header_len); inspos += gpg_sig_header_len; } - strbuf_insert(buf, inspos++, " ", 1); + strbuf_insertstr(buf, inspos++, " "); strbuf_insert(buf, inspos, bol, len); inspos += len; copypos += len; |