Ignore EINVAL returned from fsync(2) because it is the expected error code
if we try to use it on a pipe.
This commit is contained in:
parent
5a29cadda3
commit
4fc0806163
@ -1,4 +1,4 @@
|
|||||||
/* $NetBSD: dd.c,v 1.27 2002/09/01 11:33:22 enami Exp $ */
|
/* $NetBSD: dd.c,v 1.28 2002/09/03 06:17:26 tron Exp $ */
|
||||||
|
|
||||||
/*-
|
/*-
|
||||||
* Copyright (c) 1991, 1993, 1994
|
* Copyright (c) 1991, 1993, 1994
|
||||||
@ -47,7 +47,7 @@ __COPYRIGHT("@(#) Copyright (c) 1991, 1993, 1994\n\
|
|||||||
#if 0
|
#if 0
|
||||||
static char sccsid[] = "@(#)dd.c 8.5 (Berkeley) 4/2/94";
|
static char sccsid[] = "@(#)dd.c 8.5 (Berkeley) 4/2/94";
|
||||||
#else
|
#else
|
||||||
__RCSID("$NetBSD: dd.c,v 1.27 2002/09/01 11:33:22 enami Exp $");
|
__RCSID("$NetBSD: dd.c,v 1.28 2002/09/03 06:17:26 tron Exp $");
|
||||||
#endif
|
#endif
|
||||||
#endif /* not lint */
|
#endif /* not lint */
|
||||||
|
|
||||||
@ -360,7 +360,7 @@ dd_close(void)
|
|||||||
}
|
}
|
||||||
if (out.dbcnt)
|
if (out.dbcnt)
|
||||||
dd_out(1);
|
dd_out(1);
|
||||||
if (out.fd == STDOUT_FILENO && fsync(out.fd) == -1)
|
if (out.fd == STDOUT_FILENO && fsync(out.fd) == -1 && errno != EINVAL)
|
||||||
err(1, "fsync stdout");
|
err(1, "fsync stdout");
|
||||||
if (close(out.fd) == -1)
|
if (close(out.fd) == -1)
|
||||||
err(1, "close");
|
err(1, "close");
|
||||||
|
Loading…
Reference in New Issue
Block a user