forked from pool/systemd
29 lines
950 B
Diff
29 lines
950 B
Diff
|
From 248c78c79c5cca9b981800d816a77591e504066a Mon Sep 17 00:00:00 2001
|
||
|
From: Lennart Poettering <lennart@poettering.net>
|
||
|
Date: Wed, 27 Nov 2013 00:59:07 +0100
|
||
|
Subject: [PATCH] journal: allow journal_file_copy_entry() to work on
|
||
|
non-local files
|
||
|
|
||
|
---
|
||
|
src/journal/journal-file.c | 4 ----
|
||
|
1 file changed, 4 deletions(-)
|
||
|
|
||
|
diff --git src/journal/journal-file.c src/journal/journal-file.c
|
||
|
index 409be76..14eae8f 100644
|
||
|
--- src/journal/journal-file.c
|
||
|
+++ src/journal/journal-file.c
|
||
|
@@ -2732,10 +2732,6 @@ int journal_file_copy_entry(JournalFile *from, JournalFile *to, Object *o, uint6
|
||
|
ts.monotonic = le64toh(o->entry.monotonic);
|
||
|
ts.realtime = le64toh(o->entry.realtime);
|
||
|
|
||
|
- if (to->tail_entry_monotonic_valid &&
|
||
|
- ts.monotonic < le64toh(to->header->tail_entry_monotonic))
|
||
|
- return -EINVAL;
|
||
|
-
|
||
|
n = journal_file_entry_n_items(o);
|
||
|
items = alloca(sizeof(EntryItem) * n);
|
||
|
|
||
|
--
|
||
|
1.7.9.2
|
||
|
|