1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-18 10:35:55 +00:00

Remove unused variable.

Noticed by:	Todd Miller <Todd.Miller@courtesan.com>
This commit is contained in:
David Schultz 2004-07-23 06:01:00 +00:00
parent 0b651019b4
commit 9b5f005228
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=132573

View File

@ -78,7 +78,6 @@ static int __ftw_core(const char *dir, void *func, int descr, int flags,
const char *paths[2]; const char *paths[2];
int ftw_flag, func_ret; int ftw_flag, func_ret;
struct FTW ftw_st; struct FTW ftw_st;
int skip_entry;
__ftw_func_t ftw_func; __ftw_func_t ftw_func;
__nftw_func_t nftw_func; __nftw_func_t nftw_func;
int saved_errno; int saved_errno;
@ -120,15 +119,11 @@ static int __ftw_core(const char *dir, void *func, int descr, int flags,
/* The main loop. Is it not nifty? Worship the loop. */ /* The main loop. Is it not nifty? Worship the loop. */
while ((entry = fts_read(hierarchy))) { while ((entry = fts_read(hierarchy))) {
skip_entry = 0;
switch (entry->fts_info) { switch (entry->fts_info) {
case FTS_D: case FTS_D:
if ((MODE_NFTW != mode) || !(flags & FTW_DEPTH)) { if ((MODE_NFTW != mode) || !(flags & FTW_DEPTH)) {
ftw_flag = FTW_D; ftw_flag = FTW_D;
} else {
skip_entry = 1;
} }
break; break;
@ -161,8 +156,6 @@ static int __ftw_core(const char *dir, void *func, int descr, int flags,
case FTS_DP: case FTS_DP:
if ((MODE_NFTW == mode) && (flags & FTW_DEPTH)) { if ((MODE_NFTW == mode) && (flags & FTW_DEPTH)) {
ftw_flag = FTW_D; ftw_flag = FTW_D;
} else {
skip_entry = 1;
} }
break; break;
@ -171,8 +164,7 @@ static int __ftw_core(const char *dir, void *func, int descr, int flags,
* type to call with, so cowardice seems the better part of * type to call with, so cowardice seems the better part of
* guessing. * guessing.
*/ */
break;
skip_entry = 1;
} }
if (MODE_FTW == mode) { if (MODE_FTW == mode) {