fix bin2hex bug. lowercase = uppercase | 0x20, not | 0x10!

This commit is contained in:
Denis Vlasenko
2007-01-26 23:31:05 +00:00
parent fc7f92253a
commit 98c0bba09d
2 changed files with 3 additions and 3 deletions

View File

@@ -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[];