aboutsummaryrefslogtreecommitdiff
path: root/util-linux/umount.c
diff options
context:
space:
mode:
Diffstat (limited to 'util-linux/umount.c')
-rw-r--r--util-linux/umount.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/util-linux/umount.c b/util-linux/umount.c
index 78eef57a5..c958fd552 100644
--- a/util-linux/umount.c
+++ b/util-linux/umount.c
@@ -125,8 +125,8 @@ int umount_main(int argc UNUSED_PARAM, char **argv)
125 } else { 125 } else {
126 setup_common_bufsiz(); 126 setup_common_bufsiz();
127 while (getmntent_r(fp, &me, bb_common_bufsiz1, COMMON_BUFSIZE)) { 127 while (getmntent_r(fp, &me, bb_common_bufsiz1, COMMON_BUFSIZE)) {
128 /* Match fstype if passed */ 128 /* Match fstype (fstype==NULL matches always) */
129 if (!match_fstype(&me, fstype)) 129 if (!fstype_matches(me.mnt_type, fstype))
130 continue; 130 continue;
131 m = xzalloc(sizeof(*m)); 131 m = xzalloc(sizeof(*m));
132 m->next = mtl; 132 m->next = mtl;