summaryrefslogtreecommitdiffstats
path: root/lib/libstand/tftp.c
diff options
context:
space:
mode:
authorjake <jake@FreeBSD.org>2002-07-07 23:01:36 +0000
committerjake <jake@FreeBSD.org>2002-07-07 23:01:36 +0000
commit9c4815fb2170a6fe82ab28145f6a5d1f8741df10 (patch)
tree4d2ee5fe7541176269bf72a02f2748d1a693cf17 /lib/libstand/tftp.c
parent9ed546fad03342ad6c879e512a76b9830af82d26 (diff)
downloadFreeBSD-src-9c4815fb2170a6fe82ab28145f6a5d1f8741df10.zip
FreeBSD-src-9c4815fb2170a6fe82ab28145f6a5d1f8741df10.tar.gz
Add a hack (kludge?) to avoid trying to access files backed by disk
devices as though they were backed by network devices.
Diffstat (limited to 'lib/libstand/tftp.c')
-rw-r--r--lib/libstand/tftp.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/libstand/tftp.c b/lib/libstand/tftp.c
index 739015d..357cf00 100644
--- a/lib/libstand/tftp.c
+++ b/lib/libstand/tftp.c
@@ -254,6 +254,10 @@ tftp_open(path, f)
struct iodesc *io;
int res;
+#ifdef __sparc64__
+ 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