From 42adb7a56ba7b251ebc0a2d7aced81d3be5342a3 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Fri, 30 Aug 2013 17:34:24 -0500 Subject: Allow getmountlist to read fstab too. --- lib/getmountlist.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'lib/getmountlist.c') diff --git a/lib/getmountlist.c b/lib/getmountlist.c index 28a84063..c863de5d 100644 --- a/lib/getmountlist.c +++ b/lib/getmountlist.c @@ -10,13 +10,14 @@ // Get list of mounted filesystems, including stat and statvfs info. // Returns a reversed list, which is good for finding overmounts and such. -struct mtab_list *xgetmountlist(void) +struct mtab_list *xgetmountlist(char *path) { struct mtab_list *mtlist, *mt; struct mntent *me; FILE *fp; - if (!(fp = setmntent("/proc/mounts", "r"))) perror_exit("bad /proc/mounts"); + if (!path) path = "/proc/mounts"; + if (!(fp = setmntent(path, "r"))) perror_exit("bad %s", path); // The "test" part of the loop is done before the first time through and // again after each "increment", so putting the actual load there avoids -- cgit v1.2.3