1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-05 12:56:08 +00:00

Don't comment out dead code; remove it.

This commit is contained in:
Bruce Evans 1999-01-31 11:54:29 +00:00
parent c9ab07382c
commit 95c391a468
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=43461
2 changed files with 2 additions and 8 deletions

View File

@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)cd9660_vfsops.c 8.18 (Berkeley) 5/22/95
* $Id: cd9660_vfsops.c,v 1.49 1999/01/27 23:45:39 dillon Exp $
* $Id: cd9660_vfsops.c,v 1.50 1999/01/30 12:26:22 phk Exp $
*/
#include <sys/param.h>
@ -576,9 +576,6 @@ cd9660_statfs(mp, sbp, p)
bcopy(mp->mnt_stat.f_mntonname, sbp->f_mntonname, MNAMELEN);
bcopy(mp->mnt_stat.f_mntfromname, sbp->f_mntfromname, MNAMELEN);
}
/* Use the first spare for flags: */
/* Don't do this!!! XXX */
/* sbp->f_spare[0] = isomp->im_flags; */
return 0;
}

View File

@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)cd9660_vfsops.c 8.18 (Berkeley) 5/22/95
* $Id: cd9660_vfsops.c,v 1.49 1999/01/27 23:45:39 dillon Exp $
* $Id: cd9660_vfsops.c,v 1.50 1999/01/30 12:26:22 phk Exp $
*/
#include <sys/param.h>
@ -576,9 +576,6 @@ cd9660_statfs(mp, sbp, p)
bcopy(mp->mnt_stat.f_mntonname, sbp->f_mntonname, MNAMELEN);
bcopy(mp->mnt_stat.f_mntfromname, sbp->f_mntfromname, MNAMELEN);
}
/* Use the first spare for flags: */
/* Don't do this!!! XXX */
/* sbp->f_spare[0] = isomp->im_flags; */
return 0;
}