chiark / gitweb /
fstab-generator: avoid mangling of mount source string
[elogind.git] / src / fstab-generator / fstab-generator.c
index 07467249831c6971be722ac769fa10af3332d0d7..d9ba3e32e2a9475e54304508948a2f01af6d6fc9 100644 (file)
@@ -470,10 +470,7 @@ static int parse_fstab(void) {
                         goto finish;
                 }
 
-                if (path_is_absolute(what))
-                        path_kill_slashes(what);
-
-                if (path_is_absolute(where))
+                if (is_path(where))
                         path_kill_slashes(where);
 
                 log_debug("Found entry what=%s where=%s type=%s", what, where, me->mnt_type);