Skip to content
Snippets Groups Projects
Commit e739f6b9 authored by Felix Fietkau's avatar Felix Fietkau
Browse files

fix stupid busybox bin2hex bug

SVN-Revision: 6223
parent 1ec1f0bd
No related branches found
No related tags found
No related merge requests found
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;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment