[glib] gunixmounts: Fix mount points generation



commit f6fa90fb0dab7a45ec6557ade1bf8b3db755dafd
Author: Ondrej Holy <oholy redhat com>
Date:   Mon Oct 2 11:24:34 2017 +0200

    gunixmounts: Fix mount points generation
    
    Commit 53ed180 improved mtab processing, however, also introduced bug
    in code obtaining mount points. mtab was used by mistake also for
    g_unix_mount_points_get implementation, which is obviously wrong and
    fstab has to be used instead...
    
    https://bugzilla.gnome.org/show_bug.cgi?id=781867

 gio/gunixmounts.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/gio/gunixmounts.c b/gio/gunixmounts.c
index 781aeee..c4f4d3d 100644
--- a/gio/gunixmounts.c
+++ b/gio/gunixmounts.c
@@ -885,7 +885,7 @@ _g_get_unix_mount_points (void)
   GList *return_list = NULL;
 
   table = mnt_new_table ();
-  if (mnt_table_parse_mtab (table, NULL) < 0)
+  if (mnt_table_parse_fstab (table, NULL) < 0)
     goto out;
 
   iter = mnt_new_iter (MNT_ITER_FORWARD);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]