diff options
author | Junio C Hamano <gitster@pobox.com> | 2020-10-26 14:59:58 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-10-26 14:59:58 -0700 |
commit | f34687dc8109dccfebb4957897e611e7ed9e31ff (patch) | |
tree | e6853ba263bb3c5e30443b531a90aa5b6549d298 /builtin/am.c | |
parent | Sync with Git 2.29.1 (diff) | |
parent | rebase: fix broken email with --committer-date-is-author-date (diff) | |
download | tgif-f34687dc8109dccfebb4957897e611e7ed9e31ff.tar.xz |
Merge branch 'jk/committer-date-is-author-date-fix'
In 2.29, "--committer-date-is-author-date" option of "rebase" and
"am" subcommands lost the e-mail address by mistake, which has been
corrected.
* jk/committer-date-is-author-date-fix:
rebase: fix broken email with --committer-date-is-author-date
am: fix broken email with --committer-date-is-author-date
t3436: check --committer-date-is-author-date result more carefully
Diffstat (limited to 'builtin/am.c')
-rw-r--r-- | builtin/am.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin/am.c b/builtin/am.c index 2c7673f74e..4949535a7f 100644 --- a/builtin/am.c +++ b/builtin/am.c @@ -161,7 +161,7 @@ static void am_state_init(struct am_state *state) state->committer_name = xmemdupz(id.name_begin, id.name_end - id.name_begin); state->committer_email = - xmemdupz(id.mail_begin, id.mail_end - id.mail_end); + xmemdupz(id.mail_begin, id.mail_end - id.mail_begin); } /** @@ -1595,7 +1595,7 @@ static void do_commit(const struct am_state *state) if (state->committer_date_is_author_date) committer = fmt_ident(state->committer_name, - state->author_email, WANT_COMMITTER_IDENT, + state->committer_email, WANT_COMMITTER_IDENT, state->ignore_date ? NULL : state->author_date, IDENT_STRICT); |