wok view busybox/stuff/busybox-1.18-printable.u @ rev 10082

Up: qt4 to 4.7.3. This adds sercurity fixes in this release. Add libQtPlugins so you don't need to install Qt4-dev to run mixxx.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri May 20 06:22:56 2011 +0000 (2011-05-20)
parents
children
line source
1 fix the bug of 'ls cannot display utf-8 filenames'
2 --- busybox-1.17.3/libbb/printable_string.c
3 +++ busybox-printable/libbb/printable_string.c
4 @@ -31,8 +31,8 @@
5 }
6 if (c < ' ')
7 break;
8 - if (c >= 0x7f)
9 - break;
10 + /* if (c >= 0x7f) */
11 + /* break; */
12 s++;
13 }
15 @@ -45,7 +45,8 @@
16 unsigned char c = *d;
17 if (c == '\0')
18 break;
19 - if (c < ' ' || c >= 0x7f)
20 + /* if (c < ' ' || c >= 0x7f) */
21 + if (c < ' ')
22 *d = '?';
23 d++;
24 }