chiark / gitweb /
test: extend calendarspec test a bit
[elogind.git] / src / shared / util.c
index d771d321dd6a7d6a5cc7d4310409f849fb955f3d..37fd1adfc9a4f03c71f58a3f54286083f2faf953 100644 (file)
@@ -1968,7 +1968,7 @@ char *format_timestamp(char *buf, size_t l, usec_t t) {
 
         sec = (time_t) (t / USEC_PER_SEC);
 
-        if (strftime(buf, l, "%a, %Y-%m-%d %H:%M:%S %Z", localtime_r(&sec, &tm)) <= 0)
+        if (strftime(buf, l, "%a %Y-%m-%d %H:%M:%S %Z", localtime_r(&sec, &tm)) <= 0)
                 return NULL;
 
         return buf;