Resolves: RHEL-108555,RHEL-108568,RHEL-108576,RHEL-108584,RHEL-108596,RHEL-108598,RHEL-109096,RHEL-109488,RHEL-111065,RHEL-31756,RHEL-50103
28 lines
1.1 KiB
Diff
28 lines
1.1 KiB
Diff
From 008aed2736dac288700f1c177690904da9c5137d Mon Sep 17 00:00:00 2001
|
|
From: Yu Watanabe <watanabe.yu+github@gmail.com>
|
|
Date: Fri, 3 Mar 2023 15:24:23 +0900
|
|
Subject: [PATCH] time-util: fix typo
|
|
|
|
Follow-up for 7a9afae6040af0417d893328cb44b622dcdcb94f.
|
|
|
|
(cherry picked from commit ca9c9d8d8e999fd80fc43d002c8d5b20c4c1a0a4)
|
|
|
|
Related: RHEL-109488
|
|
---
|
|
src/basic/time-util.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/basic/time-util.c b/src/basic/time-util.c
|
|
index 6fbbc2f655..66bf4c17bb 100644
|
|
--- a/src/basic/time-util.c
|
|
+++ b/src/basic/time-util.c
|
|
@@ -840,7 +840,7 @@ from_tm:
|
|
if (gmtoff < 0) {
|
|
plus = -gmtoff * USEC_PER_SEC;
|
|
|
|
- /* If gmtoff is negative, the string maye be too old to be parsed as UTC.
|
|
+ /* If gmtoff is negative, the string may be too old to be parsed as UTC.
|
|
* E.g. 1969-12-31 23:00:00 -06 == 1970-01-01 05:00:00 UTC
|
|
* We assumed that gmtoff is in the range of -24:00…+24:00, hence the only date we need to
|
|
* handle here is 1969-12-31. So, let's shift the date with one day, then subtract the shift
|