diff options
author | Michael I. Bushnell <mib@gnu.org> | 1996-04-02 14:00:49 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1996-04-02 14:00:49 +0000 |
commit | 7fe177df22f817429bbf335ad4df6199a50cfaff (patch) | |
tree | fa7310a8f9283f4a99b00a54bfa05830a62ca711 /ufs-fsck/pass1.c | |
parent | 2b4f7e7596b8c9e3985e3e24ce457da4d66476d0 (diff) |
(pass1): Recognize inode type IFSOCK too.
Diffstat (limited to 'ufs-fsck/pass1.c')
-rw-r--r-- | ufs-fsck/pass1.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ufs-fsck/pass1.c b/ufs-fsck/pass1.c index f9ad9047..de9cce09 100644 --- a/ufs-fsck/pass1.c +++ b/ufs-fsck/pass1.c @@ -1,5 +1,5 @@ /* Pass one of GNU fsck -- count blocks and verify inodes - Copyright (C) 1994, 1995 Free Software Foundation, Inc. + Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc. Written by Michael I. Bushnell. This file is part of the GNU Hurd. @@ -229,6 +229,7 @@ pass1 () break; case IFIFO: + case IFSOCK: ndb = 0; break; |