aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gmid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gmid.c b/gmid.c
index cb9f694..5c8a743 100644
--- a/gmid.c
+++ b/gmid.c
@@ -101,7 +101,7 @@ log_request(struct client *c, int code, const char *meta)
fatal("time");
if ((tm = localtime(&now)) == NULL)
fatal("localtime");
- if (strftime(tstamp, sizeof(tstamp), "%d/%b%Y:%H:%M:%S %z", tm) == 0)
+ if (strftime(tstamp, sizeof(tstamp), "%d/%b/%Y:%H:%M:%S %z", tm) == 0)
fatal("strftime");
if (strftime(rfc3339, sizeof(rfc3339), "%FT%T%z", tm) == 0)
fatal("strftime");