diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-11-30 00:57:26 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-11-30 00:57:26 +0000 |
commit | 832c0b4aa9d8319020f12c0ec3eff0f96e4adbf3 (patch) | |
tree | f2ac6858243f42790947e2b9e94bb45bdefaa5c8 /bin/ls/ls.c | |
parent | c62c1dd305b65b1ed42b642371fa68081c4f54c5 (diff) |
another unused variable found by lint
Diffstat (limited to 'bin/ls/ls.c')
-rw-r--r-- | bin/ls/ls.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/bin/ls/ls.c b/bin/ls/ls.c index 2cf5a555999..75a61e1d8b0 100644 --- a/bin/ls/ls.c +++ b/bin/ls/ls.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ls.c,v 1.26 2005/11/29 20:33:01 otto Exp $ */ +/* $OpenBSD: ls.c,v 1.27 2005/11/30 00:57:25 deraadt Exp $ */ /* $NetBSD: ls.c,v 1.18 1996/07/09 09:16:29 mycroft Exp $ */ /* @@ -43,7 +43,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)ls.c 8.7 (Berkeley) 8/5/94"; #else -static char rcsid[] = "$OpenBSD: ls.c,v 1.26 2005/11/29 20:33:01 otto Exp $"; +static char rcsid[] = "$OpenBSD: ls.c,v 1.27 2005/11/30 00:57:25 deraadt Exp $"; #endif #endif /* not lint */ @@ -101,7 +101,6 @@ int f_singlecol; /* use single column output */ int f_size; /* list size in short listing */ int f_statustime; /* use time of last mode change */ int f_stream; /* stream format */ -int f_dirname; /* if precede with directory name */ int f_type; /* add type character for non-regular files */ int f_typedir; /* add type character for directories */ |