diff options
author | lum <lum@cvs.openbsd.org> | 2010-09-01 06:35:06 +0000 |
---|---|---|
committer | lum <lum@cvs.openbsd.org> | 2010-09-01 06:35:06 +0000 |
commit | fbdb965046b497ae035ffba6dfce067c3b9137fd (patch) | |
tree | b72cec5812b6ba9444ec33ef36528ca829178dd3 /usr.bin/stat | |
parent | 5ed78028ed6a88b7609d6a7907f4b01422040bc8 (diff) |
Remove unused variable: linkfail
ok gilles@
Diffstat (limited to 'usr.bin/stat')
-rw-r--r-- | usr.bin/stat/stat.c | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/usr.bin/stat/stat.c b/usr.bin/stat/stat.c index 2b944101317..550428f4cdd 100644 --- a/usr.bin/stat/stat.c +++ b/usr.bin/stat/stat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: stat.c,v 1.15 2010/06/29 20:51:05 tedu Exp $ */ +/* $OpenBSD: stat.c,v 1.16 2010/09/01 06:35:05 lum Exp $ */ /* $NetBSD: stat.c,v 1.19 2004/06/20 22:20:16 jmc Exp $ */ /* @@ -141,7 +141,6 @@ int format1(const struct stat *, /* stat info */ int, int); char *timefmt; -int linkfail; #define addchar(s, c, nl) \ do { \ @@ -164,7 +163,6 @@ main(int argc, char *argv[]) usestat = 0; nonl = 0; quiet = 0; - linkfail = 0; statfmt = NULL; timefmt = NULL; @@ -266,7 +264,6 @@ main(int argc, char *argv[]) if (rc == -1) { errs = 1; - linkfail = 1; if (!quiet) warn("%s", argc == 0 ? "(stdin)" : argv[0]); @@ -690,16 +687,14 @@ format1(const struct stat *st, snprintf(path, sizeof(path), " -> "); l = readlink(file, path + 4, sizeof(path) - 4 - 1); if (l == -1) { - linkfail = 1; l = 0; path[0] = '\0'; } path[l + 4] = '\0'; sdata = path + (ofmt == FMTF_STRING ? 0 : 4); - } else { - linkfail = 1; + } else sdata = ""; - } + formats = FMTF_STRING; if (ofmt == 0) ofmt = FMTF_STRING; |