diff options
author | peter <peter@FreeBSD.org> | 1999-11-08 03:34:53 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1999-11-08 03:34:53 +0000 |
commit | cf619ff4fe4fc80b4fd4a9762924a44b0f6a5612 (patch) | |
tree | d37025548102d3fe13f58d1c0d6c43366afc953e /sys/dev/streams | |
parent | d95a9c614d068b85822cd305a14a3c48b14fd70f (diff) | |
download | FreeBSD-src-cf619ff4fe4fc80b4fd4a9762924a44b0f6a5612.zip FreeBSD-src-cf619ff4fe4fc80b4fd4a9762924a44b0f6a5612.tar.gz |
Update the stream socket fileops table to match fo_stat() additions.
Diffstat (limited to 'sys/dev/streams')
-rw-r--r-- | sys/dev/streams/streams.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/streams/streams.c b/sys/dev/streams/streams.c index d7d1d89..78997fe 100644 --- a/sys/dev/streams/streams.c +++ b/sys/dev/streams/streams.c @@ -99,7 +99,7 @@ dev_t dt_ptm, dt_arp, dt_icmp, dt_ip, dt_tcp, dt_udp, dt_rawip, dt_unix_dgram, dt_unix_stream, dt_unix_ord_stream; static struct fileops svr4_netops = { - soo_read, soo_write, soo_ioctl, soo_poll, svr4_soo_close + soo_read, soo_write, soo_ioctl, soo_poll, soo_stat, svr4_soo_close }; #define CDEV_MAJOR 103 |