e7c96ab7f3
- Add patch 0001-bnc888612-logind-polkit-acpi.patch from Frederic to solve bnc#888612 - AUDIT-0: Power button press at gdm login should not prompt for credentials - Add upstream bugfix patches 0001-journal-Do-not-count-on-the-compiler-initializing-fo.patch 0002-include-fcntl.h-rather-than-sys-fcntl.h.patch 0003-mount-order-options-before-other-arguments-to-mount.patch 0004-shared-wtmp-utmp-don-t-clear-store_wtmp-in-utmp_put_.patch 0005-shared-label.h-add-missing-stdio.h-include.patch 0006-shared-sparse-endian.h-add-missing-byteswap.h-includ.patch 0007-libudev-monitor-warn-if-we-fail-to-request-SO_PASSCR.patch 0008-shared-conf-parser-don-t-leak-memory-on-error-in-DEF.patch 1080-udevd-parse_argv-warn-if-argumens-are-invalid.patch 1081-udevd-check-return-of-various-functions.patch 1082-udevadm-hwdb-check-return-value-of-fseeko.patch 1083-udev-node-warn-if-chmod-chown-fails.patch 1084-udev-ctrl-log-if-setting-SO_PASSCRED-fails.patch 1085-udev-fix-typos.patch 1086-udevd-don-t-fail-if-run-udev-exists.patch - Add upstream bugfix patches 0001-core-fix-resource-leak-in-manager_environment_add.patch 0002-util-remove-a-unnecessary-check.patch 0003-udev-event-explicitly-don-t-read-from-invalid-fd.patch 0004-shared-conf-parser.patch 0005-logind-fix-typo.patch 0006-systemctl-fix-resource-leak-CID-1237747.patch 0007-libudev-monitor-warn-if-we-fail-to-request-SO_PASSCR.patch 0008-shared-conf-parser-don-t-leak-memory-on-error-in-DEF.patc OBS-URL: https://build.opensuse.org/request/show/250254 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemd?expand=0&rev=207
34 lines
1.4 KiB
Diff
34 lines
1.4 KiB
Diff
Based on 65fea570f03df51dadc06a3e0d261a71fe62aa01 Mon Sep 17 00:00:00 2001
|
|
From: Tom Gundersen <teg@jklm.no>
|
|
Date: Thu, 18 Sep 2014 20:25:33 +0200
|
|
Subject: [PATCH] udev: fix typos
|
|
|
|
Spotted by Andreas Henriksson.
|
|
---
|
|
src/udev/udev-ctrl.c | 2 +-
|
|
src/udev/udevd.c | 2 +-
|
|
2 files changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
--- src/udev/udev-ctrl.c
|
|
+++ src/udev/udev-ctrl.c 2014-09-19 00:00:00.000000000 +0000
|
|
@@ -214,7 +214,7 @@ struct udev_ctrl_connection *udev_ctrl_g
|
|
/* enable receiving of the sender credentials in the messages */
|
|
r = setsockopt(conn->sock, SOL_SOCKET, SO_PASSCRED, &on, sizeof(on));
|
|
if (r < 0)
|
|
- log_warning("colud not set SO_PASSCRED: %m");
|
|
+ log_warning("could not set SO_PASSCRED: %m");
|
|
|
|
udev_ctrl_ref(uctrl);
|
|
return conn;
|
|
--- src/udev/udevd.c
|
|
+++ src/udev/udevd.c 2014-09-19 10:47:36.306235720 +0000
|
|
@@ -1088,7 +1088,7 @@ int main(int argc, char *argv[]) {
|
|
case 't':
|
|
r = safe_atou64(optarg, &event_timeout_usec);
|
|
if (r < 0)
|
|
- log_warning("Invalig --event-timeout ignored: %s", optarg);
|
|
+ log_warning("Invalid --event-timeout ignored: %s", optarg);
|
|
else {
|
|
event_timeout_usec *= USEC_PER_SEC;
|
|
event_timeout_warn_usec = (event_timeout_usec / 3) ? : 1;
|