]> err.no Git - systemd/commitdiff
Revert upstream commit which uses fsck -l (needs a newer version of util-linux).
authorTollef Fog Heen <tfheen@err.no>
Sun, 26 Dec 2010 12:02:12 +0000 (13:02 +0100)
committerTollef Fog Heen <tfheen@err.no>
Sun, 26 Dec 2010 12:02:12 +0000 (13:02 +0100)
debian/changelog
src/fsck.c

index 39a17bf927f3469f139b9e26768b9dc9fd149be5..c72e21637daccfa9becb807ffc3aaa246edb772b 100644 (file)
@@ -13,6 +13,8 @@ systemd (15-1) experimental; urgency=low
   * Revert upstream change which requires libnotify 0.7 (not yet available in
     Debian).
   * Use dh-autoreconf for updating the build system.
+  * Revert upstream commit which uses fsck -l (needs a newer version of
+    util-linux).
   * Install lsb-base hook which redirects calls to SysV init scripts to
     systemctl: /etc/init.d/<foo> <action> → systemctl <action> <foo.service>
   * Install a (auto)mount unit to mount /lib/init/rw early during boot.
index fdcf6b43c5d08335a650f7a0a713f3d3068aa945..dfaf221b3e1bb598e2e0ec42d1c0325cb58a93b7 100644 (file)
@@ -142,7 +142,7 @@ static void test_files(void) {
 }
 
 int main(int argc, char *argv[]) {
-        const char *cmdline[8];
+        const char *cmdline[7];
         int i = 0, r = EXIT_FAILURE, q;
         pid_t pid;
         siginfo_t status;
@@ -213,7 +213,6 @@ int main(int argc, char *argv[]) {
         cmdline[i++] = "/sbin/fsck";
         cmdline[i++] = "-a";
         cmdline[i++] = "-T";
-        cmdline[i++] = "-l";
 
         if (!root_directory)
                 cmdline[i++] = "-M";