aboutsummaryrefslogtreecommitdiff
path: root/tests/nt.c
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2019-06-10 14:11:53 +0300
committerSergey Poznyakoff <gray@gnu.org>2019-06-10 14:11:53 +0300
commit588fbc95959785566d6929784d73db9c167433a1 (patch)
treeb62284a5767abe088c474494eebc2e3e5de47fde /tests/nt.c
parentc4dbd40477bb658cdc5c5e01b8f80057e587cd88 (diff)
downloadpies-588fbc95959785566d6929784d73db9c167433a1.tar.gz
pies-588fbc95959785566d6929784d73db9c167433a1.tar.bz2
Bugfix
* tests/nt.c: Trivial fixes
Diffstat (limited to 'tests/nt.c')
-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)
285{ 285{
286 int fd; 286 int fd;
287 287
288 fd = open (name, sfd ? (O_WRONLY | O_TRUNC) : O_RDONLY); 288 fd = open (name, sfd ? (O_CREAT | O_TRUNC | O_WRONLY) : O_RDONLY, 0644);
289 if (!fd) 289 if (fd == -1)
290 { 290 {
291 perror (name); 291 perror (name);
292 exit (1); 292 exit (1);
293 } 293 }
294 if (dup2 (fd, sfd)) 294 if (dup2 (fd, sfd) == -1)
295 { 295 {
296 perror ("dup2"); 296 perror ("dup2");
297 exit (1); 297 exit (1);

Return to:

Send suggestions and report system problems to the System administrator.