diff options
| author | Junio C Hamano <gitster@pobox.com> | 2020-02-17 13:22:17 -0800 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2020-02-17 13:22:17 -0800 |
| commit | 9f3f38769d49255d3fbf97f35a0dec591de17db3 (patch) | |
| tree | d0b4e0ef5aab675c75932a5cf888c4f32397497f /config.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.gz 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 'config.c')
| -rw-r--r-- | config.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -204,7 +204,7 @@ static int prepare_include_condition_pattern(struct strbuf *pat) strbuf_splice(pat, 0, 1, path.buf, slash - path.buf); prefix = slash - path.buf + 1 /* slash */; } else if (!is_absolute_path(pat->buf)) - strbuf_insert(pat, 0, "**/", 3); + strbuf_insertstr(pat, 0, "**/"); add_trailing_starstar_for_dir(pat); |
