diff options
author | Lennart Poettering <lennart@poettering.net> | 2012-10-26 01:07:41 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2012-10-26 01:18:41 +0200 |
commit | 0f91dd8749c1a1ec308cc645269be92166413e38 (patch) | |
tree | f9ba5d50cdfabaa9c6709dd14d148c4914e7384b | |
parent | df688b23daff9382b8fa2609cfcf73315a3b896e (diff) |
journal: properly determine cutoff max date
-rw-r--r-- | src/journal/sd-journal.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/journal/sd-journal.c b/src/journal/sd-journal.c index 09b0eb8379..d5d2d78f1c 100644 --- a/src/journal/sd-journal.c +++ b/src/journal/sd-journal.c @@ -2121,7 +2121,7 @@ _public_ int sd_journal_get_cutoff_realtime_usec(sd_journal *j, uint64_t *from, if (from) *from = MIN(fr, *from); if (to) - *to = MIN(t, *to); + *to = MAX(t, *to); } } @@ -2160,7 +2160,7 @@ _public_ int sd_journal_get_cutoff_monotonic_usec(sd_journal *j, sd_id128_t boot if (from) *from = MIN(fr, *from); if (to) - *to = MIN(t, *to); + *to = MAX(t, *to); } } |