1
0
mirror of https://github.com/systemd/systemd.git synced 2025-02-04 21:47:31 +03:00

fsck: return SUCCESS when we skip the check

This commit is contained in:
Kay Sievers 2010-10-29 21:05:00 +02:00
parent a84f519214
commit 0f6aaf1bdd

View File

@ -189,7 +189,7 @@ int main(int argc, char *argv[]) {
times[1] = st.st_mtim;
if (utimensat(AT_FDCWD, "/", times, 0) == 0) {
log_error("Root directory is writable, skip check.");
goto finish;
return 0;
}
if (!(udev = udev_new())) {