* psplash-write.c:
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 21 Nov 2006 13:26:41 +0000 (13:26 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 21 Nov 2006 13:26:41 +0000 (13:26 +0000)
       Disable error message when the fifo doesn't exist.

ChangeLog
psplash-write.c

index 732b5f3..696244c 100644 (file)
--- 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):
index ebe0541..3fdba95 100644 (file)
@@ -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);
     }