chiark / gitweb /
journald: don't enforce monotonicity of realtime clocks when copying entries
[elogind.git] / src / journal / journal-file.c
index 0aada9c4197c76c5e71efbb0eb82761036de4161..cd5ab266f004a3d76ae08bb9db778139e70ae5f8 100644 (file)
@@ -2312,9 +2312,6 @@ int journal_file_copy_entry(JournalFile *from, JournalFile *to, Object *o, uint6
             ts.monotonic < le64toh(to->header->tail_entry_monotonic))
                 return -EINVAL;
 
-        if (ts.realtime < le64toh(to->header->tail_entry_realtime))
-                return -EINVAL;
-
         n = journal_file_entry_n_items(o);
         items = alloca(sizeof(EntryItem) * n);