journalctl: add match for the current boot when called with devpath
authorMichal Sekletar <msekleta@redhat.com>
Wed, 3 Feb 2016 10:22:52 +0000 (11:22 +0100)
committerMichal Sekletar <msekleta@redhat.com>
Wed, 3 Feb 2016 12:54:24 +0000 (13:54 +0100)
src/journal/journalctl.c

index cf359d2..bdfe7e8 100644 (file)
@@ -218,6 +218,10 @@ static int add_matches_for_device(sd_journal *j, const char *devpath) {
                 d = udev_device_get_parent(d);
         }
 
+        r = add_match_this_boot(j, arg_machine);
+        if (r < 0)
+                return log_error_errno(r, "Failed to add match for the current boot: %m");
+
         return 0;
 }