Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2007-01-21 05:57:06 +0300
committerJunio C Hamano <junkio@cox.net>2007-01-21 06:02:03 +0300
commit16bfefeebcac375ff51652eb8b866b7b65cb4905 (patch)
tree6b54c4146da35aabd4d4f4497b214edca4f07f97 /builtin-show-branch.c
parentda8f070cee6795594e4ac2af9f1e11cf9a7d3649 (diff)
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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-show-branch.c b/builtin-show-branch.c
index 651d27c2c0..b54c410e14 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);