diff options
author | Denis Vlasenko | 2007-01-26 23:31:05 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-01-26 23:31:05 +0000 |
commit | 98c0bba09d326624740a120173dbd28fbed2da22 (patch) | |
tree | 1e1682b33073c2afd28d210b01c7179776146356 /include | |
parent | fc7f92253ae1c4f050e5ea2322b53b0e81bf96be (diff) | |
download | busybox-98c0bba09d326624740a120173dbd28fbed2da22.zip busybox-98c0bba09d326624740a120173dbd28fbed2da22.tar.gz |
fix bin2hex bug. lowercase = uppercase | 0x20, not | 0x10!
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h index d2da056..8b98423 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -739,7 +739,7 @@ extern const char bb_msg_standard_input[]; extern const char bb_msg_standard_output[]; extern const char bb_str_default[]; -/* NB: (bb_hexdigits_upcase[i] | 0x10) -> lowercase hex digit */ +/* NB: (bb_hexdigits_upcase[i] | 0x20) -> lowercase hex digit */ extern const char bb_hexdigits_upcase[]; extern const char bb_path_mtab_file[]; |