From d0f6d31f5c8f494445d27ac58e55be4431fec0d2 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Wed, 20 Apr 2022 14:42:32 +0200 Subject: [PATCH] dmesg: fix --since and --until Now --since and --until requires any time field in the output (e.g. --ctime,-T), it means "dmesg --since '1 day ago'" doesn't work, but "dmesg -T --since '1 day ago'" works as expected. Addresses: https://bugzilla.redhat.com/show_bug.cgi?id=2076829 Signed-off-by: Karel Zak --- sys-utils/dmesg.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sys-utils/dmesg.c b/sys-utils/dmesg.c index 7cca88f2bb..017936255f 100644 --- a/sys-utils/dmesg.c +++ b/sys-utils/dmesg.c @@ -1592,7 +1592,9 @@ int main(int argc, char *argv[]) if ((is_timefmt(&ctl, RELTIME) || is_timefmt(&ctl, CTIME) || - is_timefmt(&ctl, ISO8601))) { + is_timefmt(&ctl, ISO8601)) || + ctl.since || + ctl.until) { if (dmesg_get_boot_time(&ctl.boot_time) != 0) ctl.time_fmt = DMESG_TIMEFTM_NONE; else -- 2.47.2