svn commit: r326816 - head/usr.bin/find

Eitan Adler eadler at FreeBSD.org
Wed Dec 13 03:36:35 UTC 2017


Author: eadler
Date: Wed Dec 13 03:36:33 2017
New Revision: 326816
URL: https://svnweb.freebsd.org/changeset/base/326816

Log:
  find(1): remove unused variable

Modified:
  head/usr.bin/find/extern.h
  head/usr.bin/find/main.c

Modified: head/usr.bin/find/extern.h
==============================================================================
--- head/usr.bin/find/extern.h	Tue Dec 12 22:21:20 2017	(r326815)
+++ head/usr.bin/find/extern.h	Wed Dec 13 03:36:33 2017	(r326816)
@@ -116,7 +116,7 @@ exec_f	f_sparse;
 exec_f	f_type;
 exec_f	f_user;
 
-extern int ftsoptions, ignore_readdir_race, isdeprecated, isdepth, isoutput;
+extern int ftsoptions, ignore_readdir_race, isdepth, isoutput;
 extern int issort, isxargs;
 extern int mindepth, maxdepth;
 extern int regexp_flags;

Modified: head/usr.bin/find/main.c
==============================================================================
--- head/usr.bin/find/main.c	Tue Dec 12 22:21:20 2017	(r326815)
+++ head/usr.bin/find/main.c	Wed Dec 13 03:36:33 2017	(r326816)
@@ -67,7 +67,6 @@ time_t now;			/* time find was run */
 int dotfd;			/* starting directory */
 int ftsoptions;			/* options for the ftsopen(3) call */
 int ignore_readdir_race;	/* ignore readdir race */
-int isdeprecated;		/* using deprecated syntax */
 int isdepth;			/* do directories on post-order visit */
 int isoutput;			/* user specified output operator */
 int issort;         		/* do hierarchies in lexicographical order */


More information about the svn-src-head mailing list