chiark / gitweb /
systemctl: always null-terminate the password
[elogind.git] / src / mount-setup.c
index 64fb4765f613d9929e956e753673ca813544a28c..5cbaee6be7eb8a0d06b00aee6ff3e6df28594433 100644 (file)
@@ -121,7 +121,7 @@ static int mount_one(const MountPoint *p) {
                 return p->fatal ? -errno : 0;
         }
 
-        label_fix(p->where);
+        label_fix(p->where, false);
 
         return 0;
 }
@@ -216,7 +216,7 @@ static int nftw_cb(
         if (ftwbuf->level == 0)
                 return 0;
 
-        label_fix(fpath);
+        label_fix(fpath, true);
         return 0;
 };