aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-01-26 23:31:05 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-01-26 23:31:05 +0000
commit681114c5ce333c9a1798c4c9c85908a48f58eb49 (patch)
tree1e1682b33073c2afd28d210b01c7179776146356 /include
parent0c101e0a9286e0dea731c5af42dbc5413f5216cf (diff)
downloadbusybox-w32-681114c5ce333c9a1798c4c9c85908a48f58eb49.tar.gz
busybox-w32-681114c5ce333c9a1798c4c9c85908a48f58eb49.tar.bz2
busybox-w32-681114c5ce333c9a1798c4c9c85908a48f58eb49.zip
fix bin2hex bug. lowercase = uppercase | 0x20, not | 0x10!
git-svn-id: svn://busybox.net/trunk/busybox@17545 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'include')
-rw-r--r--include/libbb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h
index d2da056f7..8b9842344 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -739,7 +739,7 @@ extern const char bb_msg_standard_input[];
739extern const char bb_msg_standard_output[]; 739extern const char bb_msg_standard_output[];
740 740
741extern const char bb_str_default[]; 741extern const char bb_str_default[];
742/* NB: (bb_hexdigits_upcase[i] | 0x10) -> lowercase hex digit */ 742/* NB: (bb_hexdigits_upcase[i] | 0x20) -> lowercase hex digit */
743extern const char bb_hexdigits_upcase[]; 743extern const char bb_hexdigits_upcase[];
744 744
745extern const char bb_path_mtab_file[]; 745extern const char bb_path_mtab_file[];