-/* $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>
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;
}