From: Lennart Poettering Date: Wed, 4 Jan 2012 02:45:50 +0000 (+0100) Subject: journal: fix reverse traversing of entries X-Git-Tag: v38~79 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=cf5eb6a110c39b36dd07457180b749f32488bcf5 journal: fix reverse traversing of entries --- diff --git a/src/journal/sd-journal.c b/src/journal/sd-journal.c index 1833c7534..78a91a3eb 100644 --- a/src/journal/sd-journal.c +++ b/src/journal/sd-journal.c @@ -488,7 +488,7 @@ static int next_with_matches(sd_journal *j, JournalFile *f, direction_t directio /* Make sure we don't match the entry we are starting * from. */ - found = cp > *offset; + found = cp != *offset; np = 0; LIST_FOREACH(matches, m, j->matches) {