1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-06-19 22:59:33 +02:00

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>
This commit is contained in:
Junio C Hamano 2007-01-20 18:57:06 -08:00
parent da8f070cee
commit 16bfefeebc

View File

@ -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);