From e3f0787a94c1727a4c59bbd46c612bcff298e027 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Tue, 5 Mar 2013 02:33:12 -0600 Subject: Fix another allyesconfig build break in the pending directory. --- toys/pending/mke2fs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'toys') 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"); -- cgit v1.2.3