summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2004-09-15 18:43:45 +0000
committerderaadt <deraadt@openbsd.org>2004-09-15 18:43:45 +0000
commit0c0883cf17d71d9e7f3806c18656e010bb3c4242 (patch)
treee4230800622d215383ccccb5a8fb59ab947fb84c
parentno , allowed at end of enum list (diff)
downloadwireguard-openbsd-0c0883cf17d71d9e7f3806c18656e010bb3c4242.tar.xz
wireguard-openbsd-0c0883cf17d71d9e7f3806c18656e010bb3c4242.zip
remove unused variable
-rw-r--r--usr.bin/find/extern.h4
-rw-r--r--usr.bin/find/main.c5
2 files changed, 4 insertions, 5 deletions
diff --git a/usr.bin/find/extern.h b/usr.bin/find/extern.h
index 525a6058962..a28eed963a4 100644
--- a/usr.bin/find/extern.h
+++ b/usr.bin/find/extern.h
@@ -1,4 +1,4 @@
-/* * $OpenBSD: extern.h,v 1.14 2003/06/26 07:27:29 deraadt Exp $*/
+/* * $OpenBSD: extern.h,v 1.15 2004/09/15 18:43:45 deraadt Exp $*/
/*-
* Copyright (c) 1991, 1993
* The Regents of the University of California. All rights reserved.
@@ -86,4 +86,4 @@ PLAN *c_mtime(char *, char ***, int);
PLAN *c_not(char *, char ***, int);
PLAN *c_or(char *, char ***, int);
-extern int ftsoptions, isdeprecated, isdepth, isoutput, isxargs;
+extern int ftsoptions, isdepth, isoutput, isxargs;
diff --git a/usr.bin/find/main.c b/usr.bin/find/main.c
index ee1e0049829..23954932f26 100644
--- a/usr.bin/find/main.c
+++ b/usr.bin/find/main.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: main.c,v 1.18 2004/02/24 07:20:38 jmc Exp $ */
+/* $OpenBSD: main.c,v 1.19 2004/09/15 18:43:45 deraadt Exp $ */
/*-
* Copyright (c) 1990, 1993
@@ -31,7 +31,7 @@
#ifndef lint
/*static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 6/6/93";*/
-static char rcsid[] = "$OpenBSD: main.c,v 1.18 2004/02/24 07:20:38 jmc Exp $";
+static char rcsid[] = "$OpenBSD: main.c,v 1.19 2004/09/15 18:43:45 deraadt Exp $";
#endif /* not lint */
#include <sys/types.h>
@@ -52,7 +52,6 @@ static char rcsid[] = "$OpenBSD: main.c,v 1.18 2004/02/24 07:20:38 jmc Exp $";
time_t now; /* time find was run */
int dotfd; /* starting directory */
int ftsoptions; /* options for the ftsopen(3) call */
-int isdeprecated; /* using deprecated syntax */
int isdepth; /* do directories on post-order visit */
int isoutput; /* user specified output operator */
int isxargs; /* don't permit xargs delimiting chars */