summaryrefslogtreecommitdiff
path: root/bin/df/df.c
diff options
context:
space:
mode:
authorPedro Martelletto <pedro@cvs.openbsd.org>2006-09-21 20:06:34 +0000
committerPedro Martelletto <pedro@cvs.openbsd.org>2006-09-21 20:06:34 +0000
commite179f1096195bb76ee73ef371e695dfcf698be3b (patch)
tree87a87987ad3c8ccdd156117cbec221f08bd87200 /bin/df/df.c
parente0d87d59727dcd86156c5aeb9fa6bd09b845fa10 (diff)
Remove LFS-related code, no binary change
Diffstat (limited to 'bin/df/df.c')
-rw-r--r--bin/df/df.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/bin/df/df.c b/bin/df/df.c
index 9efb5d2d08c..b329344fcc1 100644
--- a/bin/df/df.c
+++ b/bin/df/df.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: df.c,v 1.44 2006/05/11 15:06:51 deraadt Exp $ */
+/* $OpenBSD: df.c,v 1.45 2006/09/21 20:06:33 pedro Exp $ */
/* $NetBSD: df.c,v 1.21.2.1 1995/11/01 00:06:11 jtc Exp $ */
/*
@@ -45,7 +45,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.44 2006/05/11 15:06:51 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: df.c,v 1.45 2006/09/21 20:06:33 pedro Exp $";
#endif
#endif /* not lint */
@@ -79,7 +79,6 @@ void prthuman(struct statfs *sfsp, unsigned long);
int raw_df(char *, struct statfs *);
extern int ffs_df(int, char *, struct statfs *);
-extern int lfs_df(int, char *, struct statfs *);
extern int e2fs_df(int, char *, struct statfs *);
int hflag, iflag, kflag, lflag, nflag, Pflag;
@@ -447,10 +446,6 @@ raw_df(char *file, struct statfs *sfsp)
if (ffs_df(rfd, file, sfsp) == 0) {
ret = 0;
-#if 0
- } else if (lfs_df(rfd, file, sfsp) == 0) {
- ret = 0;
-#endif
} else if (e2fs_df(rfd, file, sfsp) == 0) {
ret = 0;
}