summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlum <lum@openbsd.org>2010-09-01 06:35:05 +0000
committerlum <lum@openbsd.org>2010-09-01 06:35:05 +0000
commitd1ca0b67829349498340e9cd3f768d2544c0ede8 (patch)
tree09f65cf8b853e4840eac3949aed5a2da697fc104
parentLet non-ykbec kernels link again. (diff)
downloadwireguard-openbsd-d1ca0b67829349498340e9cd3f768d2544c0ede8.tar.xz
wireguard-openbsd-d1ca0b67829349498340e9cd3f768d2544c0ede8.zip
Remove unused variable: linkfail
ok gilles@
-rw-r--r--usr.bin/stat/stat.c11
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;