aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--psplash-write.c4
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 732b5f3..696244c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-11-21 Richard Purdie <rpurdie@openedhand.com>
+
+ * psplash-write.c:
+ Disable error message when the fifo doesn't exist.
+
2006-11-21 Matthew Allum <mallum@openedhand.com>
* psplash.c: (main):
diff --git a/psplash-write.c b/psplash-write.c
index ebe0541..3fdba95 100644
--- a/psplash-write.c
+++ b/psplash-write.c
@@ -47,7 +47,9 @@ int main(int argc, char **argv)
if ((pipe_fd = open (PSPLASH_FIFO,O_WRONLY|O_NONBLOCK)) == -1)
{
- perror("Error unable to open fifo");
+ /* Silently error out instead of covering the boot process in
+ errors when psplash has exitted due to a VC switch */
+ /* perror("Error unable to open fifo"); */
exit (-1);
}