Deleted Added
full compact
146a147
> struct vfsconf *vfc;
147a149,159
> vfc = getvfsbyname("nfs");
> if(!vfc && vfsisloadable("nfs")) {
> if(vfsload("nfs"))
> err(1, "vfsload(nfs)");
> endvfsent(); /* flush cache */
> vfc = getvfsbyname("nfs"); /* probably unnecessary */
> }
> if(!vfc) {
> errx(1, "NFS is not available in the running kernel");
> }
>