diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2000-08-22 18:46:05 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2000-08-22 18:46:05 +0000 |
commit | a28b8cf11d1bde8b27761deef0ac41efd5fbe67c (patch) | |
tree | 33e6d0b92ac518a975859941cee9eae820e116de /lib/libc | |
parent | 1e327c48ef739c78d470a1f0beab9c14a731c548 (diff) |
unused variable
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/gen/exec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/gen/exec.c b/lib/libc/gen/exec.c index 88badb9018f..6f42fa3c18a 100644 --- a/lib/libc/gen/exec.c +++ b/lib/libc/gen/exec.c @@ -32,7 +32,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: exec.c,v 1.10 2000/01/29 19:52:26 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: exec.c,v 1.11 2000/08/22 18:46:04 deraadt Exp $"; #endif /* LIBC_SCCS and not lint */ #include <sys/param.h> @@ -194,7 +194,7 @@ execvp(name, argv) char **memp; register int cnt, lp, ln; register char *p; - int eacces = 0, etxtbsy = 0; + int eacces = 0; char *bp, *cur, *path, buf[MAXPATHLEN]; /* |