aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-03-18 17:56:43 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-03-18 17:56:43 +0000
commite3d83aafb40ba31369d41e456c06e929252de2e1 (patch)
treea32c95ebf0810b37458b82d17757cb88d4b5e7fa /include
parentbbbb7e02fcd116390eaa86d701b674ca3f3312f6 (diff)
downloadbusybox-w32-e3d83aafb40ba31369d41e456c06e929252de2e1.tar.gz
busybox-w32-e3d83aafb40ba31369d41e456c06e929252de2e1.tar.bz2
busybox-w32-e3d83aafb40ba31369d41e456c06e929252de2e1.zip
fix erroneous lowercasing by bb_hexdigits_upcase[i] | 0x10
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 30d3006ad..8ad92263e 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -690,7 +690,7 @@ extern const char bb_msg_standard_input[];
690extern const char bb_msg_standard_output[]; 690extern const char bb_msg_standard_output[];
691 691
692extern const char bb_str_default[]; 692extern const char bb_str_default[];
693/* NB: (bb_hexdigits_upcase[i] | 0x10) -> lowercase hex digit */ 693/* NB: (bb_hexdigits_upcase[i] | 0x20) -> lowercase hex digit */
694extern const char bb_hexdigits_upcase[]; 694extern const char bb_hexdigits_upcase[];
695 695
696extern const char bb_path_mtab_file[]; 696extern const char bb_path_mtab_file[];