summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/libstand/nfs.c3
-rw-r--r--lib/libstand/tftp.c3
2 files changed, 4 insertions, 2 deletions
diff --git a/lib/libstand/nfs.c b/lib/libstand/nfs.c
index 76a4b8d..82fa08b 100644
--- a/lib/libstand/nfs.c
+++ b/lib/libstand/nfs.c
@@ -412,10 +412,11 @@ nfs_open(upath, f)
return (ENXIO);
}
-#ifdef __sparc64__
+#ifndef __i386__
if (strcmp(f->f_dev->dv_name, "net") != 0)
return(EINVAL);
#endif
+
if (!(desc = socktodesc(*(int *)(f->f_devdata))))
return(EINVAL);
diff --git a/lib/libstand/tftp.c b/lib/libstand/tftp.c
index 357cf00..3a6630c 100644
--- a/lib/libstand/tftp.c
+++ b/lib/libstand/tftp.c
@@ -254,10 +254,11 @@ tftp_open(path, f)
struct iodesc *io;
int res;
-#ifdef __sparc64__
+#ifndef __i386__
if (strcmp(f->f_dev->dv_name, "net") != 0)
return (EINVAL);
#endif
+
tftpfile = (struct tftp_handle *) malloc(sizeof(*tftpfile));
if (!tftpfile)
return (ENOMEM);
OpenPOWER on IntegriCloud