Fix compile error and reducing size for libbb/get_console.c to previous size.

Vodz last_patch106
This commit is contained in:
Glenn L McGrath
2003-09-01 08:53:32 +00:00
parent d9461f887e
commit 005f83adf5
2 changed files with 26 additions and 44 deletions

View File

@@ -5628,7 +5628,7 @@ expmeta(char *enddir, char *name)
char *start;
char *endname;
int metaflag;
struct stat64 statb;
struct stat statb;
DIR *dirp;
struct dirent *dp;
int atend;
@@ -5671,7 +5671,7 @@ out:
p++;
*enddir++ = *p;
} while (*p++);
if (metaflag == 0 || lstat64(expdir, &statb) >= 0)
if (metaflag == 0 || lstat(expdir, &statb) >= 0)
addfname(expdir);
return;
}