From cc55ea172cb24684718fb5de4a7c76e026c6d16e Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Tue, 21 Nov 2006 13:26:41 +0000 Subject: [PATCH] * psplash-write.c: Disable error message when the fifo doesn't exist. --- ChangeLog | 5 +++++ psplash-write.c | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 732b5f3..696244c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-11-21 Richard Purdie + + * psplash-write.c: + Disable error message when the fifo doesn't exist. + 2006-11-21 Matthew Allum * 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); } -- 2.7.4