Skip to content
This repository has been archived by the owner on Oct 11, 2019. It is now read-only.

Commit

Permalink
* psplash-write.c:
Browse files Browse the repository at this point in the history
       Disable error message when the fifo doesn't exist.



git-svn-id: http://svn.o-hand.com/repos/misc/trunk/psplash@156 f5eea0f0-44ea-0310-b729-df5b855dafe5
  • Loading branch information
richard committed Nov 21, 2006
1 parent 2fd50fd commit 4ecb079
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2006-11-21 Richard Purdie <[email protected]>

* psplash-write.c:
Disable error message when the fifo doesn't exist.

2006-11-21 Matthew Allum <[email protected]>

* psplash.c: (main):
Expand Down
4 changes: 3 additions & 1 deletion psplash-write.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit 4ecb079

Please sign in to comment.