forked from pool/systemd
Accepting request 280211 from home:arvidjaar:bnc:912030
- update set-and-use-default-logconsole.patch - fix comparison of console log facility that caused journald to skip output to console (boo#912030) OBS-URL: https://build.opensuse.org/request/show/280211 OBS-URL: https://build.opensuse.org/package/show/Base:System/systemd?expand=0&rev=840
This commit is contained in:
parent
8ac58e9557
commit
329d39aad5
@ -105,7 +105,7 @@ Index: src/journal/journald-console.c
|
||||
return;
|
||||
|
||||
+ /* Do not write security/authorization (private) messages to console */
|
||||
+ if (priority & LOG_AUTHPRIV)
|
||||
+ if ((priority & LOG_FACMASK) == LOG_AUTHPRIV)
|
||||
+ return;
|
||||
+
|
||||
/* First: timestamp */
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package systemd-mini
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
|
@ -1,3 +1,10 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 11:44:27 UTC 2015 - arvidjaar@gmail.com
|
||||
|
||||
- update set-and-use-default-logconsole.patch - fix comparison of
|
||||
console log facility that caused journald to skip output to console
|
||||
(boo#912030)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 18 13:47:36 UTC 2014 - werner@suse.de
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package systemd
|
||||
#
|
||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
|
Loading…
Reference in New Issue
Block a user