diff options
author | rwatson <rwatson@FreeBSD.org> | 2001-12-31 20:05:26 +0000 |
---|---|---|
committer | rwatson <rwatson@FreeBSD.org> | 2001-12-31 20:05:26 +0000 |
commit | 70a29b1e5a898672dd33c2781cadf5c03c7c2c59 (patch) | |
tree | 0373119d23e51ff599c056c7aa02015ce4ab4aca /sys/nfsclient | |
parent | 46fe7974a97df60eb6e1dcb3f63f21a9cf51c0e4 (diff) | |
download | FreeBSD-src-70a29b1e5a898672dd33c2781cadf5c03c7c2c59.zip FreeBSD-src-70a29b1e5a898672dd33c2781cadf5c03c7c2c59.tar.gz |
o Add missing #include's of sys/proc.h, missed in merge, required to
dereference td->td_proc->p_ucred.
Diffstat (limited to 'sys/nfsclient')
-rw-r--r-- | sys/nfsclient/bootp_subr.c | 1 | ||||
-rw-r--r-- | sys/nfsclient/krpc_subr.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/sys/nfsclient/bootp_subr.c b/sys/nfsclient/bootp_subr.c index ff7c256..4440abd 100644 --- a/sys/nfsclient/bootp_subr.c +++ b/sys/nfsclient/bootp_subr.c @@ -52,6 +52,7 @@ __FBSDID("$FreeBSD$"); #include <sys/malloc.h> #include <sys/mount.h> #include <sys/mbuf.h> +#include <sys/proc.h> #include <sys/socket.h> #include <sys/socketvar.h> #include <sys/uio.h> diff --git a/sys/nfsclient/krpc_subr.c b/sys/nfsclient/krpc_subr.c index a93bb33..349cdf0 100644 --- a/sys/nfsclient/krpc_subr.c +++ b/sys/nfsclient/krpc_subr.c @@ -49,6 +49,7 @@ __FBSDID("$FreeBSD$"); #include <sys/systm.h> #include <sys/malloc.h> #include <sys/mbuf.h> +#include <sys/proc.h> #include <sys/socket.h> #include <sys/socketvar.h> #include <sys/uio.h> |