On i386, don't try to do network-type stuff if the device name is'nt pxeN.
This commit is contained in:
parent
9d4ae9aa5b
commit
472f4537e6
@ -412,9 +412,16 @@ nfs_open(upath, f)
|
||||
return (ENXIO);
|
||||
}
|
||||
|
||||
/*
|
||||
* This is silly - we should look at dv_type but that value is
|
||||
* arch dependant and we can't use it here.
|
||||
*/
|
||||
#ifndef __i386__
|
||||
if (strcmp(f->f_dev->dv_name, "net") != 0)
|
||||
return(EINVAL);
|
||||
#else
|
||||
if (strcmp(f->f_dev->dv_name, "pxe") != 0)
|
||||
return(EINVAL);
|
||||
#endif
|
||||
|
||||
if (!(desc = socktodesc(*(int *)(f->f_devdata))))
|
||||
|
Loading…
Reference in New Issue
Block a user