update to current HEAD
[buildroot.git] / package / busybox / busybox-1.4.1-binhex.patch
blobdc2ab1adbc1ca0dcd3df68d89fe01eed2ddb4c91
1 --- busybox-1.4.1/include/libbb.h Wed Jan 24 22:34:48 2007
2 +++ busybox-1.4.1-binhex/include/libbb.h Sat Jan 27 00:32:01 2007
3 @@ -690,7 +690,7 @@
4 extern const char bb_msg_standard_output[];
6 extern const char bb_str_default[];
7 -/* NB: (bb_hexdigits_upcase[i] | 0x10) -> lowercase hex digit */
8 +/* NB: (bb_hexdigits_upcase[i] | 0x20) -> lowercase hex digit */
9 extern const char bb_hexdigits_upcase[];
11 extern const char bb_path_mtab_file[];
12 --- busybox-1.4.1/libbb/xfuncs.c Wed Jan 24 22:49:25 2007
13 +++ busybox-1.4.1-binhex/libbb/xfuncs.c Sat Jan 27 00:32:01 2007
14 @@ -340,8 +340,8 @@
15 while (count) {
16 unsigned char c = *cp++;
17 /* put lowercase hex digits */
18 - *p++ = 0x10 | bb_hexdigits_upcase[c >> 4];
19 - *p++ = 0x10 | bb_hexdigits_upcase[c & 0xf];
20 + *p++ = 0x20 | bb_hexdigits_upcase[c >> 4];
21 + *p++ = 0x20 | bb_hexdigits_upcase[c & 0xf];
22 count--;
24 return p;