mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-24 13:06:14 +01:00
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
This commit is contained in:
parent
d4a21e001a
commit
f6fa90fb0d
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user