summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--daemon/fallocate.c8
-rw-r--r--fish/alloc.c5
2 files changed, 8 insertions, 5 deletions
diff --git a/daemon/fallocate.c b/daemon/fallocate.c
index 7f17f8b8..49474307 100644
--- a/daemon/fallocate.c
+++ b/daemon/fallocate.c
@@ -23,6 +23,7 @@
#include <string.h>
#include <unistd.h>
#include <fcntl.h>
+#include <errno.h>
#include "daemon.h"
#include "actions.h"
@@ -41,10 +42,9 @@ do_fallocate (const char *path, int len)
}
#ifdef HAVE_POSIX_FALLOCATE
- int r;
-
- r = posix_fallocate (fd, 0, len);
- if (r == -1) {
+ int err = posix_fallocate (fd, 0, len);
+ if (err != 0) {
+ errno = err;
reply_with_perror ("%s", path);
close (fd);
return -1;
diff --git a/fish/alloc.c b/fish/alloc.c
index 28c990f1..93cd8afd 100644
--- a/fish/alloc.c
+++ b/fish/alloc.c
@@ -24,6 +24,7 @@
#include <unistd.h>
#include <fcntl.h>
#include <inttypes.h>
+#include <errno.h>
#include "fish.h"
@@ -55,7 +56,9 @@ do_alloc (const char *cmd, int argc, char *argv[])
}
#ifdef HAVE_POSIX_FALLOCATE
- if (posix_fallocate (fd, 0, size) == -1) {
+ int err = posix_fallocate (fd, 0, size);
+ if (err != 0) {
+ errno = err;
perror ("fallocate");
close (fd);
unlink (argv[0]);