[BusyBox-cvs] busybox/miscutils strings.c,1.11,1.12

Glenn McGrath bug1 at busybox.net
Mon Sep 15 14:22:40 UTC 2003


Update of /var/cvs/busybox/miscutils
In directory winder:/tmp/cvs-serv18377/miscutils

Modified Files:
	strings.c 
Log Message:
Patch from Tito, Reduces the size of busybox's strings applet from 1900 to
1788 bytes (for strings.o).


Index: strings.c
===================================================================
RCS file: /var/cvs/busybox/miscutils/strings.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- strings.c	30 Aug 2003 12:38:13 -0000	1.11
+++ strings.c	15 Sep 2003 14:22:37 -0000	1.12
@@ -37,10 +37,11 @@
 
 int strings_main(int argc, char **argv)
 {
-	int n=4, c, i, opt=0, a=0, status=EXIT_SUCCESS;
+	int n=4, c, i, opt=0, status=EXIT_SUCCESS;
 	long t=0, count;
-	FILE *file;
+	FILE *file = stdin;
 	char *string=NULL;
+	const char *fmt="%s: ";
 
 	while ((i = getopt(argc, argv, "afon:")) > 0)
 		switch(i)
@@ -66,18 +67,19 @@
 	i=0;
 
 	string=xmalloc(n+1);
-	string[n]='\0';
+	/*string[n]='\0';*/
 	n-=1;
 
-	if(!argc )
+	if(argc==0)
 	{
-		file = stdin;
+		fmt="{%s}: ";
+		*argv=(char *)bb_msg_standard_input;
 		goto pipe;
 	}
 
-	for(a=0;a<argc;a++)
+	for(  ;*argv!=NULL;*argv++)
 	{
-		if((file=fopen(argv[a],"r")))
+		if((file=bb_wfopen(*argv,"r")))
 		{
 pipe:
 
@@ -93,7 +95,7 @@
 					if(i==n)
 					{
 						if(opt == 1 || opt == 3 )
-							printf("%s: ", (!argv[a])? "{stdin}" : argv[a]);
+							printf(fmt,*argv);
 						if(opt >= 2 )
 							printf("%7lo ", t);
 						printf("%s", string);
@@ -114,12 +116,9 @@
 			bb_fclose_nonstdin(file);
 		}
 		else
-		{
-			bb_perror_msg("%s",argv[a]);
 			status=EXIT_FAILURE;
-		}
 	}
-	free(string);
+	/*free(string);*/
 	exit(status);
 }
 




More information about the busybox-cvs mailing list