From 3ba09ee8eb9453daf9228f612c9bcd59905fcf05 Mon Sep 17 00:00:00 2001 From: "Paul W. Frields" Date: Sun, 24 Feb 2013 15:27:51 +0100 Subject: journal: fix --until https://bugs.freedesktop.org/show_bug.cgi?id=58946 --- src/journal/journalctl.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/journal') diff --git a/src/journal/journalctl.c b/src/journal/journalctl.c index 0afeef932e..0b3a79bee9 100644 --- a/src/journal/journalctl.c +++ b/src/journal/journalctl.c @@ -433,7 +433,7 @@ static int parse_argv(int argc, char *argv[]) { if (arg_follow && !arg_no_tail && arg_lines < 0) arg_lines = 10; - if (arg_since_set && arg_until_set && arg_since_set > arg_until_set) { + if (arg_since_set && arg_until_set && arg_since > arg_until) { log_error("--since= must be before --until=."); return -EINVAL; } @@ -1076,6 +1076,8 @@ int main(int argc, char *argv[]) { log_error("Failed to determine timestamp: %s", strerror(-r)); goto finish; } + if (usec > arg_until) + goto finish; } if (!arg_merge) { -- cgit v1.2.3-54-g00ecf