From d11a5c179d1745c8d134403aba37d22650cc07e6 Mon Sep 17 00:00:00 2001 From: niklas Date: Fri, 6 Sep 1996 10:37:48 +0000 Subject: [PATCH] Deal with the new pipes gracefully --- sys/compat/common/vfs_syscalls_43.c | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/sys/compat/common/vfs_syscalls_43.c b/sys/compat/common/vfs_syscalls_43.c index 64217ec87f4..e111dec6001 100644 --- a/sys/compat/common/vfs_syscalls_43.c +++ b/sys/compat/common/vfs_syscalls_43.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vfs_syscalls_43.c,v 1.2 1996/04/18 21:21:36 niklas Exp $ */ +/* $OpenBSD: vfs_syscalls_43.c,v 1.3 1996/09/06 10:37:48 niklas Exp $ */ /* $NetBSD: vfs_syscalls_43.c,v 1.4 1996/03/14 19:31:52 christos Exp $ */ /* @@ -63,6 +63,10 @@ #include #include +#include + +#include + static void cvtstat __P((struct stat *, struct ostat *)); /* @@ -223,6 +227,12 @@ compat_43_sys_fstat(p, v, retval) error = soo_stat((struct socket *)fp->f_data, &ub); break; +#ifndef OLD_PIPE + case DTYPE_PIPE: + error = pipe_stat((struct pipe *)fp->f_data, &ub); + break; +#endif + default: panic("ofstat"); /*NOTREACHED*/ -- 2.20.1