diff options
author | dg <dg@FreeBSD.org> | 1994-08-20 03:49:02 +0000 |
---|---|---|
committer | dg <dg@FreeBSD.org> | 1994-08-20 03:49:02 +0000 |
commit | c97639b9230d9c3f9032d935d7892c5b513c8814 (patch) | |
tree | f43f29ef28a2342dd7be499cf286557b75ae9f56 /sys/fs/nullfs | |
parent | 255b8baf81cdff10b66cd0893b98779e34305ff1 (diff) | |
download | FreeBSD-src-c97639b9230d9c3f9032d935d7892c5b513c8814.zip FreeBSD-src-c97639b9230d9c3f9032d935d7892c5b513c8814.tar.gz |
1) cleaned up after Garrett - fixed more redundant declarations, changed
use of timeout_t -> timeout_func_t in aha1542 and aha1742 drivers.
2) fix a bug in the portalfs that was uncovered by better prototyping -
specifically, the time must be converted from timeval to timespec
before storing in va_atime.
3) fixed/added some miscellaneous prototypes
Diffstat (limited to 'sys/fs/nullfs')
-rw-r--r-- | sys/fs/nullfs/null_vnops.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/fs/nullfs/null_vnops.c b/sys/fs/nullfs/null_vnops.c index 0fed553..d6e0cd7 100644 --- a/sys/fs/nullfs/null_vnops.c +++ b/sys/fs/nullfs/null_vnops.c @@ -35,7 +35,7 @@ * * @(#)null_vnops.c 8.1 (Berkeley) 6/10/93 * - * $Id$ + * $Id: null_vnops.c,v 1.2 1994/08/02 07:45:06 davidg Exp $ */ /* @@ -207,7 +207,6 @@ null_bypass(ap) <other random data follows, presumably> } */ *ap; { - extern int (**null_vnodeop_p)(); /* not extern, really "forward" */ register struct vnode **this_vp_p; int error; struct vnode *old_vps[VDESC_MAX_VPS]; |