diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-05-07 14:11:32 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-05-07 14:18:06 -0700 |
commit | 55ccf85a524f6a2d8cb5582d80a2927ff11dfb64 (patch) | |
tree | 1547dcd5e1f48f8427b9b6f11413aab48276e5a9 /log-tree.c | |
parent | 794151e9b595ddc2700c0801caabfd27be763e12 (diff) | |
download | git-55ccf85a524f6a2d8cb5582d80a2927ff11dfb64.tar.gz |
reflog-walk: tell explicit --date=default from not having --date at all
Introduction of opt->date_mode_explicit was a step in the right direction,
but lost that crucial bit at the very end of the callchain, and the callee
could not tell an explicitly specified "I want *date* but in default format"
from the built-in default value passed when there was no --date specified.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'log-tree.c')
-rw-r--r-- | log-tree.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/log-tree.c b/log-tree.c index 5f9e59a10c..588117e013 100644 --- a/log-tree.c +++ b/log-tree.c @@ -493,10 +493,9 @@ void show_log(struct rev_info *opt) * graph info here. */ show_reflog_message(opt->reflog_info, - opt->commit_format == CMIT_FMT_ONELINE, - opt->date_mode_explicit ? - opt->date_mode : - DATE_NORMAL); + opt->commit_format == CMIT_FMT_ONELINE, + opt->date_mode, + opt->date_mode_explicit); if (opt->commit_format == CMIT_FMT_ONELINE) return; } |