diff options
Diffstat (limited to 'toys/pending')
-rw-r--r-- | toys/pending/mke2fs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toys/pending/mke2fs.c b/toys/pending/mke2fs.c index 1a83e4f6..750e4424 100644 --- a/toys/pending/mke2fs.c +++ b/toys/pending/mke2fs.c @@ -6,7 +6,7 @@ USE_MKE2FS(NEWTOY(mke2fs, "<1>2g:Fnqm#N#i#b#", TOYFLAG_SBIN)) config MKE2FS - bool "mke2fs (unfinished and broken by dirtree changes)" + bool "mke2fs" default n help usage: mke2fs [-Fnq] [-b ###] [-N|i ###] [-m ###] device @@ -463,7 +463,7 @@ void mke2fs_main(void) if (TT.gendir) { strncpy(toybuf, TT.gendir, sizeof(toybuf)); - dti = dirtree_read(toybuf, NULL, NULL); + dti = dirtree_read(toybuf, dirtree_notdotdot); } else { dti = xzalloc(sizeof(struct dirtree)+11); strcpy(dti->name, "lost+found"); |