From 16bfefeebcac375ff51652eb8b866b7b65cb4905 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Sat, 20 Jan 2007 18:57:06 -0800 Subject: [PATCH] show-branch --reflog: fix show_date() call Not passing tz to show_date() is not a fix. Signed-off-by: Junio C Hamano --- builtin-show-branch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.30.2