diff options
| author | Han-Wen Nienhuys <hanwen@google.com> | 2021-11-22 14:19:08 +0000 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2021-11-22 11:01:25 -0800 |
| commit | 7b089120d9e0065978da461f8ccf42000e6760a4 (patch) | |
| tree | cf891aed11ed2574032887f06c3987be0783ab5f /refs/files-backend.c | |
| parent | Git 2.34 (diff) | |
| download | git-7b089120d9e0065978da461f8ccf42000e6760a4.tar.gz git-7b089120d9e0065978da461f8ccf42000e6760a4.zip | |
refs: drop force_create argument of create_reflog API
There is only one caller, builtin/checkout.c, and it hardcodes
force_create=1.
This argument was introduced in abd0cd3a301 (refs: new public ref function:
safe_create_reflog, 2015-07-21), which promised to immediately use it in a
follow-on commit, but that never happened.
Signed-off-by: Han-Wen Nienhuys <hanwen@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'refs/files-backend.c')
| -rw-r--r-- | refs/files-backend.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/refs/files-backend.c b/refs/files-backend.c index 151b0056fe..00f596dd68 100644 --- a/refs/files-backend.c +++ b/refs/files-backend.c @@ -1639,15 +1639,14 @@ error: return -1; } -static int files_create_reflog(struct ref_store *ref_store, - const char *refname, int force_create, +static int files_create_reflog(struct ref_store *ref_store, const char *refname, struct strbuf *err) { struct files_ref_store *refs = files_downcast(ref_store, REF_STORE_WRITE, "create_reflog"); int fd; - if (log_ref_setup(refs, refname, force_create, &fd, err)) + if (log_ref_setup(refs, refname, 1, &fd, err)) return -1; if (fd >= 0) |
