summaryrefslogtreecommitdiffstats
path: root/package/busybox/patches/120-bin2hex.patch
diff options
context:
space:
mode:
authormbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-05-10 08:01:55 +0000
committermbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-05-10 08:01:55 +0000
commit7a5c6744213c2db8419b4ce5f8c76afce3501479 (patch)
treea446379780ec5f789b1d5ab0bc2beb6960ecad85 /package/busybox/patches/120-bin2hex.patch
parentd4451582d7ae78dbf0fd5ea41cc1a116afaf16bf (diff)
update to busybox 1.4.2 (fixes #1653)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7157 3c298f89-4303-0410-b956-a3cf2f4a3e73
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 05caf04c4..000000000
--- 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;