77593c6f2f
- Add upstream patches 0001-login-fix-memory-leak-on-DropController.patch 0002-util-fix-minimal-race-where-we-might-miss-SIGTERMs-w.patch 0003-sd-journal-properly-convert-object-size-on-big-endia.patch 0004-sd-journal-verify-that-object-start-with-the-field-n.patch - Add upstream patch 1064-udev-hwdb-do-not-look-at-usb_device-parents.patch to avoid that hwdb ID's for unrecognised USB device are taken from the USB hub. - Add upstream patches 0001-systemctl-Correct-error-message-printed-when-bus_pro.patch 0002-units-order-systemd-fsck-.service-after-local-fs-pre.patch 0003-keymap-Adjust-for-more-Samsung-900X4-series.patch - Add patch use-rndaddentropy-ioctl-to-load-random-seed.patch to use RNDADDENTROPY ioctl to load random-seed and to increase entropy count as well (bnc#892096) - Add upstream patches 0001-login-fix-memory-leak-on-DropController.patch 0002-util-fix-minimal-race-where-we-might-miss-SIGTERMs-w.patch 0003-sd-journal-properly-convert-object-size-on-big-endia.patch 0004-sd-journal-verify-that-object-start-with-the-field-n.patch - Add upstream patch 1064-udev-hwdb-do-not-look-at-usb_device-parents.patch to avoid that hwdb ID's for unrecognised USB device are taken from the USB hub. - Add upstream patches OBS-URL: https://build.opensuse.org/request/show/246717 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemd?expand=0&rev=202
29 lines
1.0 KiB
Diff
29 lines
1.0 KiB
Diff
From 498cfc230af8f83675be2e92057956f1792969e4 Mon Sep 17 00:00:00 2001
|
|
From: Sjoerd Simons <sjoerd.simons@collabora.co.uk>
|
|
Date: Sat, 23 Aug 2014 21:11:44 +0200
|
|
Subject: [PATCH] systemctl: Correct error message printed when
|
|
bus_process_wait fails
|
|
|
|
Actually use the variable containing the return code of bus_process_wait when
|
|
printing the error message as a result of it failing.
|
|
---
|
|
src/systemctl/systemctl.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git src/systemctl/systemctl.c src/systemctl/systemctl.c
|
|
index d9b8bee..6534819 100644
|
|
--- src/systemctl/systemctl.c
|
|
+++ src/systemctl/systemctl.c
|
|
@@ -2382,7 +2382,7 @@ static int wait_for_jobs(sd_bus *bus, Set *s) {
|
|
while (!set_isempty(s)) {
|
|
q = bus_process_wait(bus);
|
|
if (q < 0) {
|
|
- log_error("Failed to wait for response: %s", strerror(-r));
|
|
+ log_error("Failed to wait for response: %s", strerror(-q));
|
|
return q;
|
|
}
|
|
|
|
--
|
|
1.7.9.2
|
|
|