diff options
author | bug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2003-09-01 08:53:32 +0000 |
---|---|---|
committer | bug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2003-09-01 08:53:32 +0000 |
commit | 253ff43f62644ee79597eed14b49dcf291f198a1 (patch) | |
tree | 0b6c4e7e592bb6f150be66ec072002d2e85fd4dc /shell | |
parent | 64c7e422387452d3f3597ced29c936a4f49beead (diff) | |
download | busybox-w32-253ff43f62644ee79597eed14b49dcf291f198a1.tar.gz busybox-w32-253ff43f62644ee79597eed14b49dcf291f198a1.tar.bz2 busybox-w32-253ff43f62644ee79597eed14b49dcf291f198a1.zip |
Fix compile error and reducing size for libbb/get_console.c to previous size.
Vodz last_patch106
git-svn-id: svn://busybox.net/trunk/busybox@7345 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ash.c | 4 |
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) | |||
5628 | char *start; | 5628 | char *start; |
5629 | char *endname; | 5629 | char *endname; |
5630 | int metaflag; | 5630 | int metaflag; |
5631 | struct stat64 statb; | 5631 | struct stat statb; |
5632 | DIR *dirp; | 5632 | DIR *dirp; |
5633 | struct dirent *dp; | 5633 | struct dirent *dp; |
5634 | int atend; | 5634 | int atend; |
@@ -5671,7 +5671,7 @@ out: | |||
5671 | p++; | 5671 | p++; |
5672 | *enddir++ = *p; | 5672 | *enddir++ = *p; |
5673 | } while (*p++); | 5673 | } while (*p++); |
5674 | if (metaflag == 0 || lstat64(expdir, &statb) >= 0) | 5674 | if (metaflag == 0 || lstat(expdir, &statb) >= 0) |
5675 | addfname(expdir); | 5675 | addfname(expdir); |
5676 | return; | 5676 | return; |
5677 | } | 5677 | } |