svn commit: trunk/busybox/shell

vodz at busybox.net vodz at busybox.net
Thu Jan 19 11:23:40 UTC 2006


Author: vodz
Date: 2006-01-19 03:23:34 -0800 (Thu, 19 Jan 2006)
New Revision: 13421

Log:
restore 8-bit syntax works, last debian patch is broken. Noticed by Vladimir Dronnikov

Modified:
   trunk/busybox/shell/ash.c


Changeset:
Modified: trunk/busybox/shell/ash.c
===================================================================
--- trunk/busybox/shell/ash.c	2006-01-19 10:41:40 UTC (rev 13420)
+++ trunk/busybox/shell/ash.c	2006-01-19 11:23:34 UTC (rev 13421)
@@ -5256,7 +5256,7 @@
 	q = makestrspace(len * 2, q);
 
 	while (len--) {
-		int c = (unsigned char)*p++;
+		int c = *p++;
 		if (!c)
 			continue;
 		if (quotes && (SIT(c, syntax) == CCTL || SIT(c, syntax) == CBACK))




More information about the busybox-cvs mailing list