aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/nt.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/nt.c b/tests/nt.c
index 6ee18f8..7501586 100644
--- a/tests/nt.c
+++ b/tests/nt.c
@@ -285,13 +285,13 @@ redirect (int sfd, char const *name)
{
int fd;
- fd = open (name, sfd ? (O_WRONLY | O_TRUNC) : O_RDONLY);
- if (!fd)
+ fd = open (name, sfd ? (O_CREAT | O_TRUNC | O_WRONLY) : O_RDONLY, 0644);
+ if (fd == -1)
{
perror (name);
exit (1);
}
- if (dup2 (fd, sfd))
+ if (dup2 (fd, sfd) == -1)
{
perror ("dup2");
exit (1);

Return to:

Send suggestions and report system problems to the System administrator.