From: Lennart Poettering Date: Wed, 4 Jan 2012 02:45:14 +0000 (+0100) Subject: journal: don't mind too much if we can't find a monotonic timestamp X-Git-Tag: v38~81 X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9c4e3f2624102c0b59cea78aabe4ed1f1d60064e;p=systemd journal: don't mind too much if we can't find a monotonic timestamp --- diff --git a/src/journal/sd-journal.c b/src/journal/sd-journal.c index 555c35ec..fde1a0be 100644 --- a/src/journal/sd-journal.c +++ b/src/journal/sd-journal.c @@ -349,7 +349,7 @@ static int find_location(sd_journal *j, JournalFile *f, direction_t direction, O r = journal_file_move_to_entry_by_monotonic(f, j->current_location.boot_id, j->current_location.monotonic, direction, &o, &p); if (r <= 0) - return r; + return r == -ENOENT ? 0 : r; } LIST_FOREACH(matches, m, j->matches) {