Deleted Added
full compact
41c41
< #endif not lint
---
> #endif /*not lint*/
44,45c44,47
< static char sccsid[] = "@(#)mountd.c 8.8 (Berkeley) 2/20/94";
< #endif not lint
---
> /*static char sccsid[] = "From: @(#)mountd.c 8.8 (Berkeley) 2/20/94";*/
> static const char rcsid[] =
> "$Id$";
> #endif /*not lint*/
237a240
> struct vfsconf *vfc;
238a242,252
> vfc = getvfsbyname("nfs");
> if(!vfc && vfsisloadable("nfs")) {
> if(vfsload("nfs"))
> err(1, "vfsload(nfs)");
> endvfsent(); /* flush cache */
> vfc = getvfsbyname("nfs");
> }
> if(!vfc) {
> errx(1, "NFS support is not available in the running kernel");
> }
>