[BusyBox-cvs] busybox/shell ash.c,1.76,1.77

Glenn McGrath bug1 at busybox.net
Mon Sep 1 08:53:35 UTC 2003


Update of /var/cvs/busybox/shell
In directory winder:/tmp/cvs-serv4662/shell

Modified Files:
	ash.c 
Log Message:
Fix compile error and reducing size for libbb/get_console.c to previous size.
Vodz last_patch106


Index: ash.c
===================================================================
RCS file: /var/cvs/busybox/shell/ash.c,v
retrieving revision 1.76
retrieving revision 1.77
diff -u -d -r1.76 -r1.77
--- ash.c	29 Aug 2003 07:29:30 -0000	1.76
+++ ash.c	1 Sep 2003 08:53:32 -0000	1.77
@@ -5628,7 +5628,7 @@
 	char *start;
 	char *endname;
 	int metaflag;
-	struct stat64 statb;
+	struct stat statb;
 	DIR *dirp;
 	struct dirent *dp;
 	int atend;
@@ -5671,7 +5671,7 @@
 				p++;
 			*enddir++ = *p;
 		} while (*p++);
-		if (metaflag == 0 || lstat64(expdir, &statb) >= 0)
+		if (metaflag == 0 || lstat(expdir, &statb) >= 0)
 			addfname(expdir);
 		return;
 	}




More information about the busybox-cvs mailing list