From: Junio C Hamano Date: Sun, 21 Jan 2007 02:57:06 +0000 (-0800) Subject: show-branch --reflog: fix show_date() call X-Git-Tag: v1.5.0-rc2~15 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=16bfefeebcac375ff51652eb8b866b7b65cb4905;p=git.git show-branch --reflog: fix show_date() call Not passing tz to show_date() is not a fix. Signed-off-by: Junio C Hamano --- 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);