summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--daemon/find.c2
-rw-r--r--daemon/initrd.c2
-rw-r--r--daemon/tar.c8
3 files changed, 6 insertions, 6 deletions
diff --git a/daemon/find.c b/daemon/find.c
index 287aae39..7ceeafaf 100644
--- a/daemon/find.c
+++ b/daemon/find.c
@@ -113,7 +113,7 @@ do_find (char *dir)
return NULL;
}
}
- if (pclose (fp) == -1) {
+ if (pclose (fp) != 0) {
reply_with_perror ("pclose: find");
free_stringslen (res, size);
return NULL;
diff --git a/daemon/initrd.c b/daemon/initrd.c
index 513ed8da..2d6cbdde 100644
--- a/daemon/initrd.c
+++ b/daemon/initrd.c
@@ -78,7 +78,7 @@ do_initrd_list (char *path)
return NULL;
}
- if (pclose (fp) == -1) {
+ if (pclose (fp) != 0) {
reply_with_perror ("pclose");
free_strings (filenames);
return NULL;
diff --git a/daemon/tar.c b/daemon/tar.c
index 4d9feaa0..0320604c 100644
--- a/daemon/tar.c
+++ b/daemon/tar.c
@@ -88,7 +88,7 @@ do_tar_in (char *dir)
return -1;
}
- if (pclose (fp) == -1) {
+ if (pclose (fp) != 0) {
err = errno;
cancel_receive ();
errno = err;
@@ -150,7 +150,7 @@ do_tar_out (char *dir)
return -1;
}
- if (pclose (fp) == -1) {
+ if (pclose (fp) != 0) {
perror (dir);
send_file_end (1); /* Cancel. */
return -1;
@@ -214,7 +214,7 @@ do_tgz_in (char *dir)
return -1;
}
- if (pclose (fp) == -1) {
+ if (pclose (fp) != 0) {
err = errno;
cancel_receive ();
errno = err;
@@ -276,7 +276,7 @@ do_tgz_out (char *dir)
return -1;
}
- if (pclose (fp) == -1) {
+ if (pclose (fp) != 0) {
perror (dir);
send_file_end (1); /* Cancel. */
return -1;