diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-02-07 23:28:23 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-02-07 23:28:23 +0100 |
commit | 3205c24a822c61d74b0f58090606433c52bc4796 (patch) | |
tree | 747f2b21032696c653b53126b970d95aeda2c145 /coreutils | |
parent | eb255752c14634f48c25e634fcf17b2479a160cc (diff) | |
download | busybox-w32-3205c24a822c61d74b0f58090606433c52bc4796.tar.gz busybox-w32-3205c24a822c61d74b0f58090606433c52bc4796.tar.bz2 busybox-w32-3205c24a822c61d74b0f58090606433c52bc4796.zip |
shaNNNsum: accept and ignore -b and -t
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/md5_sha1_sum.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/coreutils/md5_sha1_sum.c b/coreutils/md5_sha1_sum.c index a64026d3d..3d50bb0f5 100644 --- a/coreutils/md5_sha1_sum.c +++ b/coreutils/md5_sha1_sum.c | |||
@@ -101,8 +101,10 @@ int md5_sha1_sum_main(int argc UNUSED_PARAM, char **argv) | |||
101 | unsigned flags; | 101 | unsigned flags; |
102 | /*hash_algo_t hash_algo = applet_name[3];*/ | 102 | /*hash_algo_t hash_algo = applet_name[3];*/ |
103 | 103 | ||
104 | if (ENABLE_FEATURE_MD5_SHA1_SUM_CHECK) | 104 | if (ENABLE_FEATURE_MD5_SHA1_SUM_CHECK) { |
105 | flags = getopt32(argv, "scw"); | 105 | /* -b "binary", -t "text" are ignored (shaNNNsum compat) */ |
106 | flags = getopt32(argv, "scwbt"); | ||
107 | } | ||
106 | else optind = 1; | 108 | else optind = 1; |
107 | argv += optind; | 109 | argv += optind; |
108 | //argc -= optind; | 110 | //argc -= optind; |