summaryrefslogtreecommitdiffstats
path: root/sbin/mount
diff options
context:
space:
mode:
Diffstat (limited to 'sbin/mount')
-rw-r--r--sbin/mount/Makefile2
-rw-r--r--sbin/mount/mount.c11
2 files changed, 0 insertions, 13 deletions
diff --git a/sbin/mount/Makefile b/sbin/mount/Makefile
index e9e4fdf..407abea 100644
--- a/sbin/mount/Makefile
+++ b/sbin/mount/Makefile
@@ -3,8 +3,6 @@
PROG= mount
SRCS= mount.c mount_ufs.c getmntopts.c vfslist.c
-DPADD= ${LIBUFS}
-LDADD= -lufs
WARNS?= 0
MAN= mount.8
# We do NOT install the getmntopts.3 man page.
diff --git a/sbin/mount/mount.c b/sbin/mount/mount.c
index 5f6a950..df97adb 100644
--- a/sbin/mount/mount.c
+++ b/sbin/mount/mount.c
@@ -46,10 +46,6 @@ static const char rcsid[] =
#include <sys/stat.h>
#include <sys/wait.h>
-#include <ufs/ufs/ufsmount.h>
-#include <ufs/ufs/dinode.h>
-#include <ufs/ffs/fs.h>
-
#include <ctype.h>
#include <err.h>
#include <errno.h>
@@ -62,7 +58,6 @@ static const char rcsid[] =
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
-#include <libufs.h>
#include "extern.h"
#include "mntopts.h"
@@ -515,16 +510,10 @@ prmount(sfp)
int flags, i;
struct opt *o;
struct passwd *pw;
- struct uufsd disk;
(void)printf("%s on %s (%s", sfp->f_mntfromname, sfp->f_mntonname,
sfp->f_fstypename);
- if (strncmp(sfp->f_fstypename, "ufs", 3) == 0) {
- ufs_disk_fillout(&disk, sfp->f_mntonname);
- printf("%s", (disk.d_ufs == 2) ? "2" : "");
- }
-
flags = sfp->f_flags & MNT_VISFLAGMASK;
for (o = optnames; flags && o->o_opt; o++)
if (flags & o->o_opt) {
OpenPOWER on IntegriCloud