Dr. Werner Fink 2012-03-01 09:50:56 +00:00 committed by Git OBS Bridge
parent eee511fb52
commit 4188ff4ed6
2 changed files with 25 additions and 4 deletions

View File

@ -1,4 +1,19 @@
--- .#empty
+++ .#empty 2012-01-30 17:44:30.343145442 +0000
@@ -0,0 +1 @@
+Place holder
--- libconsole.c
+++ libconsole.c 2012-03-01 09:49:44.493932912 +0000
@@ -902,16 +902,6 @@ void safeIO (void)
#ifdef DEBUG_SIGIO
if (nsigio < 0)
goto skip;
-#else
- if (nsigio < 0) {
- /*
- * Maybe access() does lie under kernel 2.6
- * or the root file system is rw mounted
- */
- const char *runlevel = getenv("RUNLEVEL");
- if (runlevel && (*runlevel < '0' || *runlevel > '6'))
- goto skip;
- }
#endif
if (access(BOOT_LOGFILE, W_OK) < 0) {
if (errno != ENOENT && errno != EROFS)

View File

@ -3,6 +3,12 @@ Wed Feb 8 12:35:24 UTC 2012 - werner@suse.de
- Work around dully check script of obs
-------------------------------------------------------------------
Wed Feb 1 12:01:05 UTC 2012 - werner@suse.de
- Avoid useless check for runlevel as access(2) now works on
kernel 3.0 and above, this fixes bnc#744538
-------------------------------------------------------------------
Tue Jan 31 16:40:18 UTC 2012 - werner@suse.de