From 0086b00b307188ee1a9a120c9a871f310e925d0b Mon Sep 17 00:00:00 2001 From: julian Date: Wed, 27 May 1998 03:32:23 +0000 Subject: A fix to a debug test from Kirk. --- contrib/sys/softupdates/ffs_softdep.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'contrib') diff --git a/contrib/sys/softupdates/ffs_softdep.c b/contrib/sys/softupdates/ffs_softdep.c index 4123e33..ba565e9 100644 --- a/contrib/sys/softupdates/ffs_softdep.c +++ b/contrib/sys/softupdates/ffs_softdep.c @@ -54,7 +54,7 @@ * SUCH DAMAGE. * * @(#)ffs_softdep.c 9.23 (McKusick) 2/20/98 - * $Id:$ + * $Id: ffs_softdep.c,v 1.6 1998/05/19 23:07:22 julian Exp $ */ /* @@ -2692,6 +2692,9 @@ scan_page(bp) break; if (dp->d_ino == 0) continue; + if (dp->d_name[0] == '.' && (dp->d_namlen == 1 || + (dp->d_namlen == 2 && dp->d_name[1] == '.'))) + continue; if (inodedep_lookup(fs, dp->d_ino, 0, &inodedep) == 0) continue; if (inodedep->id_state & NEWINODE) -- cgit v1.1