summaryrefslogtreecommitdiff
path: root/bin/df
diff options
context:
space:
mode:
authorTed Unangst <tedu@cvs.openbsd.org>2003-02-19 07:32:04 +0000
committerTed Unangst <tedu@cvs.openbsd.org>2003-02-19 07:32:04 +0000
commit2bf29363ec4ca7faeecb66c48e7d796c23a88ea1 (patch)
tree7b644e74913f9eaca95841f05b6e2c0af4510e1d /bin/df
parent2556dc0176c361cc63f1b69000448e2d0760be40 (diff)
LFS is dead. saves some space on install floppies too.
ok deraadt@
Diffstat (limited to 'bin/df')
-rw-r--r--bin/df/Makefile4
-rw-r--r--bin/df/df.c6
2 files changed, 6 insertions, 4 deletions
diff --git a/bin/df/Makefile b/bin/df/Makefile
index 7b604730e1a..2b8998fd4ca 100644
--- a/bin/df/Makefile
+++ b/bin/df/Makefile
@@ -1,6 +1,6 @@
-# $OpenBSD: Makefile,v 1.5 2002/06/08 22:47:36 angelos Exp $
+# $OpenBSD: Makefile,v 1.6 2003/02/19 07:32:03 tedu Exp $
PROG= df
-SRCS= df.c ffs_df.c lfs_df.c ext2fs_df.c
+SRCS= df.c ffs_df.c ext2fs_df.c lfs_df.c
.include <bsd.prog.mk>
diff --git a/bin/df/df.c b/bin/df/df.c
index 5e086b8c499..2e396540ddb 100644
--- a/bin/df/df.c
+++ b/bin/df/df.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: df.c,v 1.32 2002/07/04 04:26:39 deraadt Exp $ */
+/* $OpenBSD: df.c,v 1.33 2003/02/19 07:32:03 tedu Exp $ */
/* $NetBSD: df.c,v 1.21.2.1 1995/11/01 00:06:11 jtc Exp $ */
/*
@@ -49,7 +49,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)df.c 8.7 (Berkeley) 4/2/94";
#else
-static char rcsid[] = "$OpenBSD: df.c,v 1.32 2002/07/04 04:26:39 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: df.c,v 1.33 2003/02/19 07:32:03 tedu Exp $";
#endif
#endif /* not lint */
@@ -478,8 +478,10 @@ raw_df(char *file, struct statfs *sfsp)
if (ffs_df(rfd, file, sfsp) == 0) {
return (0);
+#if 0
} else if (lfs_df(rfd, file, sfsp) == 0) {
return (0);
+#endif
} else if (e2fs_df(rfd, file, sfsp) == 0) {
return (0);
} else {