diff options
| author | Jonathan Lemon <jlemon@FreeBSD.org> | 2000-04-29 20:47:10 +0000 |
|---|---|---|
| committer | Jonathan Lemon <jlemon@FreeBSD.org> | 2000-04-29 20:47:10 +0000 |
| commit | efb8ff85324712bafcd6a2f12860719f45352762 (patch) | |
| tree | 7a85eb5687d4fce46f6b57b31d505c93507a8414 /lib/libstand/nfs.c | |
| parent | ee8d82ce9f77be7cf71c3e1d3914056159a5d26b (diff) | |
Notes
Diffstat (limited to 'lib/libstand/nfs.c')
| -rw-r--r-- | lib/libstand/nfs.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/lib/libstand/nfs.c b/lib/libstand/nfs.c index 7b0e783e617d..1206bb75d8f9 100644 --- a/lib/libstand/nfs.c +++ b/lib/libstand/nfs.c @@ -1,3 +1,4 @@ +/* $FreeBSD$ */ /* $NetBSD: nfs.c,v 1.2 1998/01/24 12:43:09 drochner Exp $ */ /*- @@ -109,10 +110,16 @@ static off_t nfs_seek(struct open_file *f, off_t offset, int where); static int nfs_stat(struct open_file *f, struct stat *sb); struct fs_ops nfs_fsops = { - "nfs", nfs_open, nfs_close, nfs_read, nfs_write, nfs_seek, nfs_stat + "nfs", + nfs_open, + nfs_close, + nfs_read, + nfs_write, + nfs_seek, + nfs_stat, + null_readdir }; - /* * Fetch the root file handle (call mount daemon) * Return zero or error number. |
