mount: make it more readable
[oweals/busybox.git] / e2fsprogs / fsck.c
index 3c4dabc48907ee7b58974376bfb482b7e7eb3470..3c6cafbd3f2b1ddee90e2306ef2d682fb872151d 100644 (file)
  * Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
  *      2001, 2002, 2003, 2004, 2005 by  Theodore Ts'o.
  *
- * %Begin-Header%
- * This file may be redistributed under the terms of the GNU Public
- * License.
- * %End-Header%
+ * Licensed under GPLv2, see file LICENSE in this tarball for details.
  */
 
 /* All filesystem specific hooks have been removed.
@@ -313,10 +310,10 @@ static void load_fs_info(const char *filename)
        // Loop through entries
        while (getmntent_r(fstab, &mte, bb_common_bufsiz1, COMMON_BUFSIZE)) {
                //bb_info_msg("CREATE[%s][%s][%s][%s][%d]", mte.mnt_fsname, mte.mnt_dir,
-               //      mte.mnt_type, mte.mnt_opts, 
+               //      mte.mnt_type, mte.mnt_opts,
                //      mte.mnt_passno);
                fs = create_fs_device(mte.mnt_fsname, mte.mnt_dir,
-                       mte.mnt_type, mte.mnt_opts, 
+                       mte.mnt_type, mte.mnt_opts,
                        mte.mnt_passno);
        }
        endmntent(fstab);