diff options
author | Junio C Hamano <junkio@cox.net> | 2007-01-20 18:57:06 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-01-20 19:02:03 -0800 |
commit | 16bfefeebcac375ff51652eb8b866b7b65cb4905 (patch) | |
tree | 6b54c4146da35aabd4d4f4497b214edca4f07f97 /builtin-show-branch.c | |
parent | da8f070cee6795594e4ac2af9f1e11cf9a7d3649 (diff) | |
download | git-16bfefeebcac375ff51652eb8b866b7b65cb4905.tar.gz git-16bfefeebcac375ff51652eb8b866b7b65cb4905.tar.xz |
show-branch --reflog: fix show_date() call
Not passing tz to show_date() is not a fix.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'builtin-show-branch.c')
-rw-r--r-- | builtin-show-branch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-show-branch.c b/builtin-show-branch.c index 651d27c2c..b54c410e1 100644 --- a/builtin-show-branch.c +++ b/builtin-show-branch.c @@ -725,7 +725,7 @@ int cmd_show_branch(int ac, const char **av, const char *prefix) msg++; m = xmalloc(strlen(msg) + 200); sprintf(m, "(%s) %s", - show_date(timestamp, 0, 1), + show_date(timestamp, tz, 1), msg); reflog_msg[i] = m; free(logmsg); |