fix stupid busybox bin2hex bug
authorFelix Fietkau <nbd@openwrt.org>
Sat, 27 Jan 2007 17:38:17 +0000 (17:38 +0000)
committerFelix Fietkau <nbd@openwrt.org>
Sat, 27 Jan 2007 17:38:17 +0000 (17:38 +0000)
SVN-Revision: 6223

package/busybox/patches/120-bin2hex.patch [new file with mode: 0644]

diff --git a/package/busybox/patches/120-bin2hex.patch b/package/busybox/patches/120-bin2hex.patch
new file mode 100644 (file)
index 0000000..05caf04
--- /dev/null
@@ -0,0 +1,14 @@
+diff -ur busybox.old/libbb/xfuncs.c busybox.dev/libbb/xfuncs.c
+--- busybox.old/libbb/xfuncs.c 2007-01-19 22:23:06.000000000 +0100
++++ busybox.dev/libbb/xfuncs.c 2007-01-27 18:30:56.229172096 +0100
+@@ -339,8 +339,8 @@
+       while (count) {
+               unsigned char c = *cp++;
+               /* put lowercase hex digits */
+-              *p++ = 0x10 | bb_hexdigits_upcase[c >> 4];
+-              *p++ = 0x10 | bb_hexdigits_upcase[c & 0xf];
++              *p++ = 0x20 | bb_hexdigits_upcase[c >> 4];
++              *p++ = 0x20 | bb_hexdigits_upcase[c & 0xf];
+               count--;
+       }
+       return p;