]> err.no Git - util-linux/commitdiff
mount: add mnt_init_debug()
authorKarel Zak <kzak@redhat.com>
Tue, 21 Dec 2010 08:55:25 +0000 (09:55 +0100)
committerKarel Zak <kzak@redhat.com>
Mon, 3 Jan 2011 11:28:48 +0000 (12:28 +0100)
Signed-off-by: Karel Zak <kzak@redhat.com>
mount/fstab.c
mount/mount.c
mount/umount.c

index 74cbf21b1f2e5b4249f9d4eca61d088d6d20a133..2d3767abdadd5db79835822cf2ae6384c937df3c 100644 (file)
@@ -307,9 +307,10 @@ getmntdevbackward (const char *name, struct mntentchn *mcprev) {
        mc0 = mtab_head();
        if (!mcprev)
                mcprev = mc0;
-       for (mc = mcprev->prev; mc && mc != mc0; mc = mc->prev)
+       for (mc = mcprev->prev; mc && mc != mc0; mc = mc->prev) {
                if (streq(mc->m.mnt_fsname, name))
                        return mc;
+       }
        return NULL;
 }
 
index c4955ffd3dd4dcfdb698c6e000c6b742f0a42f87..3c4a10108696e39249857fa4a694aabbd3653382 100644 (file)
@@ -2484,6 +2484,10 @@ main(int argc, char *argv[]) {
                printf("mount: eUID:       %u\n", geteuid());
        }
 
+#ifdef HAVE_LIBMOUNT_MOUNT
+       mnt_init_debug(0);
+#endif
+
        argc -= optind;
        argv += optind;
 
index 6e24779b452cf3535de9b4a5a5b5a7b836ad9a4c..e762653817fda1b3742457f6584785397e96038e 100644 (file)
@@ -738,6 +738,9 @@ main (int argc, char *argv[]) {
 
        atexit(unlock_mtab);
 
+#ifdef HAVE_LIBMOUNT_MOUNT
+       mnt_init_debug(0);
+#endif
        if (all) {
                /* nodev stuff: sysfs, usbfs, oprofilefs, ... */
                if (types == NULL)