summaryrefslogtreecommitdiff
path: root/date.c
diff options
context:
space:
mode:
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>2017-07-01 13:15:47 (GMT)
committerJunio C Hamano <gitster@pobox.com>2017-07-01 17:47:05 (GMT)
commit3b702239d6399685aa69539b83be5f744cfa10e3 (patch)
tree4a2938057646a3f1f65ad9cd8c40ca575b6dbbff /date.c
parent4904cbc9e195f1de2cb6ff3c5b3d5b756343ef44 (diff)
downloadgit-3b702239d6399685aa69539b83be5f744cfa10e3.zip
git-3b702239d6399685aa69539b83be5f744cfa10e3.tar.gz
git-3b702239d6399685aa69539b83be5f744cfa10e3.tar.bz2
strbuf: change an always NULL/"" strbuf_addftime() param to bool
strbuf_addftime() allows callers to pass a time zone name for expanding %Z. The only current caller either passes the empty string or NULL, in which case %Z is handed over verbatim to strftime(3). Replace that string parameter with a flag controlling whether to remove %Z from the format specification. This simplifies the code. Commit-message-by: René Scharfe <l.s.r@web.de> Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'date.c')
-rw-r--r--date.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/date.c b/date.c
index 5580c40..8aca136 100644
--- a/date.c
+++ b/date.c
@@ -243,7 +243,7 @@ const char *show_date(unsigned long time, int tz, const struct date_mode *mode)
tm->tm_hour, tm->tm_min, tm->tm_sec, tz);
else if (mode->type == DATE_STRFTIME)
strbuf_addftime(&timebuf, mode->strftime_fmt, tm, tz,
- mode->local ? NULL : "");
+ !mode->local);
else
strbuf_addf(&timebuf, "%.3s %.3s %d %02d:%02d:%02d %d%c%+05d",
weekday_names[tm->tm_wday],