summaryrefslogtreecommitdiff
path: root/src/import/export-raw.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/import/export-raw.c')
-rw-r--r--src/import/export-raw.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/import/export-raw.c b/src/import/export-raw.c
index 8485027b2b..eaa6d10915 100644
--- a/src/import/export-raw.c
+++ b/src/import/export-raw.c
@@ -37,6 +37,7 @@
#include "import-common.h"
#include "missing.h"
#include "ratelimit.h"
+#include "stat-util.h"
#include "string-util.h"
#include "util.h"
@@ -319,8 +320,9 @@ int raw_export_start(RawExport *e, const char *path, int fd, ImportCompressType
if (fstat(sfd, &e->st) < 0)
return -errno;
- if (!S_ISREG(e->st.st_mode))
- return -ENOTTY;
+ r = stat_verify_regular(&e->st);
+ if (r < 0)
+ return r;
/* Try to take a reflink snapshot of the file, if we can t make the export atomic */
tfd = reflink_snapshot(sfd, path);