diff options
author | Denys Vlasenko | 2009-11-26 05:43:16 +0100 |
---|---|---|
committer | Denys Vlasenko | 2009-11-26 05:43:16 +0100 |
commit | 5b6fe34cee9ccb70e813a1c3844c8d35fb708cbe (patch) | |
tree | 70fbf57d13fea8c1498a2aec093877f6fc3ec91e /coreutils/cksum.c | |
parent | fa1e7177fbd442f15e31cf96113b582753764de7 (diff) | |
download | busybox-5b6fe34cee9ccb70e813a1c3844c8d35fb708cbe.zip busybox-5b6fe34cee9ccb70e813a1c3844c8d35fb708cbe.tar.gz |
split: handle - as "use stdin". +13 bytes. Closes bug 741.
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils/cksum.c')
-rw-r--r-- | coreutils/cksum.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/cksum.c b/coreutils/cksum.c index 3a77c75..8e65b1c 100644 --- a/coreutils/cksum.c +++ b/coreutils/cksum.c @@ -4,8 +4,8 @@ * * Copyright (C) 2006 by Rob Sullivan, with ideas from code by Walter Harms * - * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. */ - + * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. + */ #include "libbb.h" int cksum_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |