commit | ddec5af6b0803c7434a1cc2fdee5cb9873fe6bd0 | [log] [tgz] |
---|---|---|
author | Denis Vlasenko <vda.linux@googlemail.com> | Thu Oct 26 23:25:17 2006 +0000 |
committer | Denis Vlasenko <vda.linux@googlemail.com> | Thu Oct 26 23:25:17 2006 +0000 |
tree | f4f2aa58fa669aed6e2c50bb7aa648a79ec1873d | |
parent | f0ed376eda5d5c25d270e5100a881fb2d801bee6 [diff] [blame] |
rename functions to more understandable names
diff --git a/coreutils/cksum.c b/coreutils/cksum.c index 3a9b0b0..5221332 100644 --- a/coreutils/cksum.c +++ b/coreutils/cksum.c
@@ -22,7 +22,7 @@ int inp_stdin = (argc == optind) ? 1 : 0; do { - fp = bb_wfopen_input((inp_stdin) ? bb_msg_standard_input : *++argv); + fp = fopen_or_warn_stdin((inp_stdin) ? bb_msg_standard_input : *++argv); crc = 0; length = 0;