aboutsummaryrefslogtreecommitdiff
path: root/toys/lsb/md5sum.c
diff options
context:
space:
mode:
Diffstat (limited to 'toys/lsb/md5sum.c')
-rw-r--r--toys/lsb/md5sum.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/toys/lsb/md5sum.c b/toys/lsb/md5sum.c
index 83f7c92d..92e9221b 100644
--- a/toys/lsb/md5sum.c
+++ b/toys/lsb/md5sum.c
@@ -9,7 +9,7 @@
* and LSB standard command, sha1sum is just a good idea.
USE_MD5SUM(NEWTOY(md5sum, "b", TOYFLAG_USR|TOYFLAG_BIN))
-USE_MD5SUM_SHA1SUM(OLDTOY(sha1sum, md5sum, "b", TOYFLAG_USR|TOYFLAG_BIN))
+USE_SHA1SUM(NEWTOY(sha1sum, "b", TOYFLAG_USR|TOYFLAG_BIN))
config MD5SUM
bool "md5sum"
@@ -23,10 +23,9 @@ config MD5SUM
-b brief (hash only, no filename)
-config MD5SUM_SHA1SUM
+config SHA1SUM
bool "sha1sum"
default y
- depends on MD5SUM
help
usage: sha1sum [FILE]...
@@ -241,3 +240,8 @@ void md5sum_main(void)
{
loopfiles(toys.optargs, do_hash);
}
+
+void sha1sum_main(void)
+{
+ md5sum_main();
+}