diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2005-06-16 14:51:22 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2005-06-16 14:51:22 +0000 |
commit | d8a7cc8bc2e1588b4e556b7411341500cbedc750 (patch) | |
tree | d4662df220cf20cc14c2489dcba89ef10cbf2128 /sbin | |
parent | 678eb3ac89043eb139ab3a52baf270890a52ca40 (diff) |
whiteout bit I missed earlier
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/restore/interactive.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/sbin/restore/interactive.c b/sbin/restore/interactive.c index 5968a406bf8..69624bfcda6 100644 --- a/sbin/restore/interactive.c +++ b/sbin/restore/interactive.c @@ -1,4 +1,4 @@ -/* $OpenBSD: interactive.c,v 1.22 2005/06/14 19:46:05 millert Exp $ */ +/* $OpenBSD: interactive.c,v 1.23 2005/06/16 14:51:21 millert Exp $ */ /* $NetBSD: interactive.c,v 1.10 1997/03/19 08:42:52 lukem Exp $ */ /* @@ -34,7 +34,7 @@ #if 0 static char sccsid[] = "@(#)interactive.c 8.3 (Berkeley) 9/13/94"; #else -static const char rcsid[] = "$OpenBSD: interactive.c,v 1.22 2005/06/14 19:46:05 millert Exp $"; +static const char rcsid[] = "$OpenBSD: interactive.c,v 1.23 2005/06/16 14:51:21 millert Exp $"; #endif #endif /* not lint */ @@ -631,10 +631,6 @@ mkentry(char *name, struct direct *dp, struct afile *fp) fp->postfix = '#'; break; - case DT_WHT: - fp->postfix = '%'; - break; - case DT_UNKNOWN: case DT_DIR: if (inodetype(dp->d_ino) == NODE) |