diff options
author | 2005-06-15 17:47:17 +0000 | |
---|---|---|
committer | 2005-06-15 17:47:17 +0000 | |
commit | 0278adda01e3d92d3435d4d36f595c9a817182f2 (patch) | |
tree | 37c6b1ed233aae8826bff731b3ede78f1c2fb420 /bin/ls/print.c | |
parent | Disable hardware vlan decapsulation. (diff) | |
download | wireguard-openbsd-0278adda01e3d92d3435d4d36f595c9a817182f2.tar.xz wireguard-openbsd-0278adda01e3d92d3435d4d36f595c9a817182f2.zip |
remove whiteout support
Diffstat (limited to 'bin/ls/print.c')
-rw-r--r-- | bin/ls/print.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/bin/ls/print.c b/bin/ls/print.c index 40ca68b4098..44f49df0c6f 100644 --- a/bin/ls/print.c +++ b/bin/ls/print.c @@ -1,4 +1,4 @@ -/* $OpenBSD: print.c,v 1.23 2005/01/10 20:16:15 otto Exp $ */ +/* $OpenBSD: print.c,v 1.24 2005/06/15 17:47:17 millert Exp $ */ /* $NetBSD: print.c,v 1.15 1996/12/11 03:25:39 thorpej Exp $ */ /* @@ -37,7 +37,7 @@ #if 0 static char sccsid[] = "@(#)print.c 8.5 (Berkeley) 7/28/94"; #else -static char rcsid[] = "$OpenBSD: print.c,v 1.23 2005/01/10 20:16:15 otto Exp $"; +static char rcsid[] = "$OpenBSD: print.c,v 1.24 2005/06/15 17:47:17 millert Exp $"; #endif #endif /* not lint */ @@ -338,9 +338,6 @@ printtype(u_int mode) case S_IFSOCK: (void)putchar('='); return (1); - case S_IFWHT: - (void)putchar('%'); - return (1); } if (mode & (S_IXUSR | S_IXGRP | S_IXOTH)) { (void)putchar('*'); |