chiark / gitweb /
machined: make image read-only check indepenednt on own privs
authorLennart Poettering <lennart@poettering.net>
Fri, 26 Dec 2014 18:36:25 +0000 (19:36 +0100)
committerLennart Poettering <lennart@poettering.net>
Fri, 26 Dec 2014 18:36:25 +0000 (19:36 +0100)
src/machine/image.c

index 1574adf30b1531dac024bded9a5784e8499679e1..8a119e5db71abea5b315507b1523d8a5eab6ad71 100644 (file)
@@ -112,7 +112,7 @@ static int image_make(
 
         read_only =
                 (path && path_startswith(path, "/usr")) ||
 
         read_only =
                 (path && path_startswith(path, "/usr")) ||
-                faccessat(dfd, filename, W_OK, AT_EACCESS) < 0;
+                (faccessat(dfd, filename, W_OK, AT_EACCESS) < 0 && errno == EROFS);
 
         if (S_ISDIR(st.st_mode)) {
 
 
         if (S_ISDIR(st.st_mode)) {