aboutsummaryrefslogtreecommitdiffstats
path: root/package/busybox/patches/120-bin2hex.patch
diff options
context:
space:
mode:
authorMike Baker <mbm@openwrt.org>2007-05-10 08:01:55 +0000
committerMike Baker <mbm@openwrt.org>2007-05-10 08:01:55 +0000
commit2bb4aa3e90c0c4e96e06b7615ee761ab0ddc85e9 (patch)
tree1f50b466d90a4fbe4d8c5636ad8ce5da99ca0b88 /package/busybox/patches/120-bin2hex.patch
parent324c12d220e179e60ea141b42b422b91a184856c (diff)
downloadupstream-2bb4aa3e90c0c4e96e06b7615ee761ab0ddc85e9.tar.gz
upstream-2bb4aa3e90c0c4e96e06b7615ee761ab0ddc85e9.tar.bz2
upstream-2bb4aa3e90c0c4e96e06b7615ee761ab0ddc85e9.zip
update to busybox 1.4.2 (fixes #1653)
SVN-Revision: 7157
Diffstat (limited to 'package/busybox/patches/120-bin2hex.patch')
-rw-r--r--package/busybox/patches/120-bin2hex.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/package/busybox/patches/120-bin2hex.patch b/package/busybox/patches/120-bin2hex.patch
deleted file mode 100644
index 05caf04c43..0000000000
--- a/package/busybox/patches/120-bin2hex.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-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;