Display time as suggested in utc (3.0)

This fixes #1895
This commit is contained in:
Dirk Wetter 2021-06-03 19:29:26 +02:00
parent c0d9427988
commit f6a9044315

View File

@ -1871,10 +1871,12 @@ wait_kill(){
return 3 # means killed
}
# parse_date date format input-format
# Convert date formats -- we always use GMT=UTC here
# argv1: source date string
# argv2: dest date sting
if "$HAS_GNUDATE"; then # Linux and NetBSD
parse_date() {
LC_ALL=C date -d "$1" "$2"
LC_ALL=C TZ=GMT date -d "$1" "$2"
}
elif "$HAS_FREEBSDDATE"; then # FreeBSD, OS X and newer (~6.6) OpenBSD versions
parse_date() {
@ -1896,7 +1898,7 @@ elif "$HAS_OPENBSDDATE"; then
}
else
parse_date() {
LC_ALL=C date -j "$2" "$1"
LC_ALL=C TZ=GMT date -j "$2" "$1"
}
fi