summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/rc/mountinfo.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/rc/mountinfo.c b/src/rc/mountinfo.c
index 3adff5d..0ad2823 100644
--- a/src/rc/mountinfo.c
+++ b/src/rc/mountinfo.c
@@ -453,7 +453,6 @@ int mountinfo(int argc, char **argv)
}
nodes = find_mounts(&args);
rc_stringlist_free(args.mounts);
- rc_stringlist_sort(&nodes);
REG_FREE(args.fstype_regex);
REG_FREE(args.skip_fstype_regex);
@@ -464,6 +463,8 @@ int mountinfo(int argc, char **argv)
result = EXIT_FAILURE;
quiet = rc_yesno(getenv("EINFO_QUIET"));
+
+ /* We should report the mounts in reverse order to ease unmounting */
TAILQ_FOREACH_REVERSE(s, nodes, rc_stringlist, entries) {
if (point_regex &&
regexec(point_regex, s->value, 0, NULL, 0) != 0)