summaryrefslogtreecommitdiff
path: root/lib/libstand/tftp.c
diff options
context:
space:
mode:
authorJonathan Lemon <jlemon@FreeBSD.org>2000-04-29 20:47:10 +0000
committerJonathan Lemon <jlemon@FreeBSD.org>2000-04-29 20:47:10 +0000
commitefb8ff85324712bafcd6a2f12860719f45352762 (patch)
tree7a85eb5687d4fce46f6b57b31d505c93507a8414 /lib/libstand/tftp.c
parentee8d82ce9f77be7cf71c3e1d3914056159a5d26b (diff)
Notes
Diffstat (limited to 'lib/libstand/tftp.c')
-rw-r--r--lib/libstand/tftp.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/libstand/tftp.c b/lib/libstand/tftp.c
index 63d32d95a798..e7f885d9071d 100644
--- a/lib/libstand/tftp.c
+++ b/lib/libstand/tftp.c
@@ -67,7 +67,14 @@ static off_t tftp_seek(struct open_file *f, off_t offset, int where);
static int tftp_stat(struct open_file *f, struct stat *sb);
struct fs_ops tftp_fsops = {
- "tftp", tftp_open, tftp_close, tftp_read, tftp_write, tftp_seek, tftp_stat
+ "tftp",
+ tftp_open,
+ tftp_close,
+ tftp_read,
+ tftp_write,
+ tftp_seek,
+ tftp_stat,
+ null_readdir
};
extern struct in_addr servip;