aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2003-09-01 08:53:32 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2003-09-01 08:53:32 +0000
commit005f83adf511ab89296639abbef737ad4e5826f9 (patch)
tree0b6c4e7e592bb6f150be66ec072002d2e85fd4dc /shell
parentd9461f887ee967d3d9e55321b5eee5b88e1dc415 (diff)
downloadbusybox-005f83adf511ab89296639abbef737ad4e5826f9.tar.gz
Fix compile error and reducing size for libbb/get_console.c to previous size.
Vodz last_patch106
Diffstat (limited to 'shell')
-rw-r--r--shell/ash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/ash.c b/shell/ash.c
index ec33a106c..521d65ab6 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -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;
}