diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-08-13 18:59:27 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-08-13 18:59:27 +0000 |
commit | 4ccfea81033f7de6fe05a29c45e81aec673a541b (patch) | |
tree | d64c7dde6f9e0c38744de2e1dc17b1fd068c8cda /sbin | |
parent | d90b913be01b39da6ce1ef549cd56f7007251258 (diff) |
handle ext2fs specially
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/mountd/mountd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/mountd/mountd.c b/sbin/mountd/mountd.c index 9cc4c14e0ab..a1261e74343 100644 --- a/sbin/mountd/mountd.c +++ b/sbin/mountd/mountd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mountd.c,v 1.19 1997/08/09 12:59:14 niklas Exp $ */ +/* $OpenBSD: mountd.c,v 1.20 1997/08/13 18:59:26 deraadt Exp $ */ /* $NetBSD: mountd.c,v 1.31 1996/02/18 11:57:53 fvdl Exp $ */ /* @@ -714,6 +714,7 @@ get_exportlist() if (!strncmp(fsp->f_fstypename, MOUNT_MFS, MFSNAMELEN) || !strncmp(fsp->f_fstypename, MOUNT_FFS, MFSNAMELEN) || + !strncmp(fsp->f_fstypename, MOUNT_EXT2FS, MFSNAMELEN) || !strncmp(fsp->f_fstypename, MOUNT_MSDOS, MFSNAMELEN) || !strncmp(fsp->f_fstypename, MOUNT_ADOSFS, MFSNAMELEN) || !strncmp(fsp->f_fstypename, MOUNT_CD9660, MFSNAMELEN)) { |