Improve timestamp printing in filemode
authorjob <job@openbsd.org>
Tue, 10 Jan 2023 13:26:34 +0000 (13:26 +0000)
committerjob <job@openbsd.org>
Tue, 10 Jan 2023 13:26:34 +0000 (13:26 +0000)
OK claudio@

usr.sbin/rpki-client/print.c

index 5de6515..aceb8db 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: print.c,v 1.25 2023/01/06 13:19:43 tb Exp $ */
+/*     $OpenBSD: print.c,v 1.26 2023/01/10 13:26:34 job Exp $ */
 /*
  * Copyright (c) 2021 Claudio Jeker <claudio@openbsd.org>
  * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv>
@@ -57,7 +57,8 @@ time2str(time_t t)
        if (gmtime_r(&t, &tm) == NULL)
                return "could not convert time";
 
-       strftime(buf, sizeof(buf), "%h %d %T %Y %Z", &tm);
+       strftime(buf, sizeof(buf), "%a %d %b %Y %T %z", &tm);
+
        return buf;
 }