diff options
Diffstat (limited to 'mkfs.jffs2.c')
-rw-r--r-- | mkfs.jffs2.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mkfs.jffs2.c b/mkfs.jffs2.c index 7255536..23a8cf8 100644 --- a/mkfs.jffs2.c +++ b/mkfs.jffs2.c @@ -273,6 +273,11 @@ static struct filesystem_entry *find_filesystem_entry( struct filesystem_entry *e = dir; if (S_ISDIR(dir->sb.st_mode)) { + /* If this is the first call, and we actually want this + * directory, then return it now */ + if (strcmp(fullname, e->fullname) == 0) + return e; + e = dir->files; } while (e) { |