From 07f1c2b810604dd2d63b0fe16ab44cfd9db23ed7f1a6cab5d17acfc496b5fc0c Mon Sep 17 00:00:00 2001 From: OBS User buildservice-autocommit Date: Thu, 28 Oct 2010 11:24:41 +0000 Subject: [PATCH 1/2] Updating link to change in openSUSE:Factory/sysvinit revision 88.0 OBS-URL: https://build.opensuse.org/package/show/Base:System/sysvinit?expand=0&rev=87d657ad01cc22f98470ef5ce53ae8b3 --- sysvinit.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sysvinit.spec b/sysvinit.spec index 98b15cb..c040453 100644 --- a/sysvinit.spec +++ b/sysvinit.spec @@ -29,7 +29,7 @@ License: GPLv2+ Group: System/Base AutoReqProv: on Version: 2.88 -Release: 20 +Release: 21 Summary: SysV-Style init BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: audit-devel libselinux-devel libsepol-devel pam-devel From 65338939a13b2419cae19b8de960d6295398d05bc6eb8fcebfb0c5b88bf627cd Mon Sep 17 00:00:00 2001 From: "Dr. Werner Fink" Date: Fri, 29 Oct 2010 15:21:39 +0000 Subject: [PATCH 2/2] . OBS-URL: https://build.opensuse.org/package/show/Base:System/sysvinit?expand=0&rev=82 --- showconsole-1.13.dif | 31 +++++++++++++++++++++++++++---- sysvinit.changes | 5 +++++ 2 files changed, 32 insertions(+), 4 deletions(-) diff --git a/showconsole-1.13.dif b/showconsole-1.13.dif index 20a62e7..d9ab7ac 100644 --- a/showconsole-1.13.dif +++ b/showconsole-1.13.dif @@ -1,4 +1,27 @@ ---- .dummy -+++ .dummy 2010-10-21 09:54:55.000000000 +0000 -@@ -0,0 +1 @@ -+Just a dummy, remove for a real patch +--- libconsole.c ++++ libconsole.c 2010-10-29 15:16:44.691925956 +0000 +@@ -707,11 +707,12 @@ static void parselog(unsigned char *buf, + static void copylog(const unsigned char *buf, const size_t s) + { + lock(&llock); +- if (!nl) { ++ if (!nl) + addlog('\n'); +- nl = 1; +- } + storelog(buf, s); ++ if (buf[s-1] != '\n') ++ addlog('\n'); ++ nl = 1; + unlock(&llock); + } + +@@ -770,7 +771,7 @@ void prepareIO(void (*rfunc)(int), void + (void)mkfifo(fifo_name, 0600); + errno = 0; + if (!stat(fifo_name, &st) && S_ISFIFO(st.st_mode)) { +- if ((fdfifo = open(fifo_name, O_RDONLY|O_NOCTTY|O_CLOEXEC)) < 0) ++ if ((fdfifo = open(fifo_name, O_RDWR|O_NOCTTY|O_CLOEXEC)) < 0) + warn("can not open named fifo %s: %s\n", fifo_name, strerror(errno)); + } + } diff --git a/sysvinit.changes b/sysvinit.changes index 6938374..009ee1d 100644 --- a/sysvinit.changes +++ b/sysvinit.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Oct 29 17:20:56 CEST 2010 - werner@suse.de + +- Add newline after blogger message + ------------------------------------------------------------------- Wed Oct 27 12:46:16 CEST 2010 - werner@suse.de