diff options
Diffstat (limited to 'toys')
-rw-r--r-- | toys/df.c | 9 | ||||
-rw-r--r-- | toys/toylist.h | 2 |
2 files changed, 6 insertions, 5 deletions
@@ -21,11 +21,12 @@ static void show_mt(struct mtab_list *mt) // If we have -t, skip other filesystem types if (toy.df.fstype) { - struct string_list *sl; + struct arg_list *al; - for (sl = toy.df.fstype; sl; sl = sl->next) - if (!strcmp(mt->type, sl->str)) break; - if (!sl) return; + for (al = toy.df.fstype; al; al = al->next) { + if (!strcmp(mt->type, al->arg)) break; + } + if (!al) return; } // If we don't have -a, skip synthetic filesystems diff --git a/toys/toylist.h b/toys/toylist.h index a0eef1c1..ad749cd2 100644 --- a/toys/toylist.h +++ b/toys/toylist.h @@ -54,7 +54,7 @@ NEWTOY(toybox, NULL, 0) // The rest of these are alphabetical, for binary search. USE_TOYSH(NEWTOY(cd, NULL, TOYFLAG_NOFORK)) -USE_DF(NEWTOY(df, "Pkt:a", TOYFLAG_USR|TOYFLAG_SBIN)) +USE_DF(NEWTOY(df, "Pkt*a", TOYFLAG_USR|TOYFLAG_SBIN)) USE_TOYSH(NEWTOY(exit, NULL, TOYFLAG_NOFORK)) USE_HELLO(NEWTOY(hello, NULL, TOYFLAG_NOFORK|TOYFLAG_USR)) USE_PWD(NEWTOY(pwd, NULL, TOYFLAG_BIN)) |