summaryrefslogtreecommitdiff
path: root/lib/libstand/dosfs.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/dosfs.c
parentee8d82ce9f77be7cf71c3e1d3914056159a5d26b (diff)
Notes
Diffstat (limited to 'lib/libstand/dosfs.c')
-rw-r--r--lib/libstand/dosfs.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/lib/libstand/dosfs.c b/lib/libstand/dosfs.c
index 2910cb2de92e..3646a9ea7233 100644
--- a/lib/libstand/dosfs.c
+++ b/lib/libstand/dosfs.c
@@ -23,6 +23,8 @@
* IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * $FreeBSD$
*/
/*
@@ -46,7 +48,14 @@ static off_t dos_seek(struct open_file *fd, off_t offset, int whence);
static int dos_stat(struct open_file *fd, struct stat *sb);
struct fs_ops dosfs_fsops = {
- "dosfs", dos_open, dos_close, dos_read, null_write, dos_seek, dos_stat
+ "dosfs",
+ dos_open,
+ dos_close,
+ dos_read,
+ null_write,
+ dos_seek,
+ dos_stat,
+ null_readdir
};
#define SECSIZ 512 /* sector size */