diff options
author | peter <peter@FreeBSD.org> | 1997-03-11 11:29:42 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1997-03-11 11:29:42 +0000 |
commit | e8e23405def4966834a6703435257f5f00ed1ac1 (patch) | |
tree | dbcfbcbf175d67996919b391d49ba44933521f9e /lib/libc/string/strmode.c | |
parent | f635e3d3fe547173e7c723038996fbe151718b1d (diff) | |
parent | e0e06d68d52707cbac25844a417ab6919613e9eb (diff) | |
download | FreeBSD-src-e8e23405def4966834a6703435257f5f00ed1ac1.zip FreeBSD-src-e8e23405def4966834a6703435257f5f00ed1ac1.tar.gz |
This commit was generated by cvs2svn to compensate for changes in r23658,
which included commits to RCS files with non-trunk default branches.
Diffstat (limited to 'lib/libc/string/strmode.c')
-rw-r--r-- | lib/libc/string/strmode.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/libc/string/strmode.c b/lib/libc/string/strmode.c index 651b263..2c3f44a 100644 --- a/lib/libc/string/strmode.c +++ b/lib/libc/string/strmode.c @@ -32,7 +32,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)strmode.c 8.1 (Berkeley) 6/4/93"; +static char sccsid[] = "@(#)strmode.c 8.3 (Berkeley) 8/15/94"; #endif /* LIBC_SCCS and not lint */ #include <sys/types.h> @@ -69,6 +69,11 @@ strmode(mode, p) *p++ = 'p'; break; #endif +#ifdef S_IFWHT + case S_IFWHT: /* whiteout */ + *p++ = 'w'; + break; +#endif default: /* unknown */ *p++ = '?'; break; |