aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2013-03-05 02:33:12 -0600
committerRob Landley <rob@landley.net>2013-03-05 02:33:12 -0600
commite3f0787a94c1727a4c59bbd46c612bcff298e027 (patch)
treefa1e77479f690e5f5263a1fd8e959893dd3478fc
parentcc99be215388cc3ffce0d8edc552cb344259b45c (diff)
downloadtoybox-e3f0787a94c1727a4c59bbd46c612bcff298e027.tar.gz
Fix another allyesconfig build break in the pending directory.
-rw-r--r--toys/pending/mke2fs.c4
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");