diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2017-02-16 00:40:02 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2017-02-16 00:40:50 -0800 |
commit | 1c27b56095b4a82be7d072baabc09262cb4227e5 (patch) | |
tree | 116db7c0c9eec1c6321db7e079975f897554ea7c /src/sum.c | |
parent | a24e9cc55c36f148639557767a39958683577b72 (diff) | |
download | coreutils-1c27b56095b4a82be7d072baabc09262cb4227e5.tar.xz |
* bootstrap.conf, src/base64.c, src/cat.c, src/cksum.c:
* src/head.c, src/md5sum.c, src/od.c, src/split.c, src/sum.c:
* src/tac.c, src/tail.c, src/tee.c, src/tr.c, src/wc.c:
Adjust to renaming of the xsetmode module to xbinary-io,
and of the xsetmode function to xset_binary_mode.
Diffstat (limited to 'src/sum.c')
-rw-r--r-- | src/sum.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -29,7 +29,7 @@ #include "fadvise.h" #include "human.h" #include "safe-read.h" -#include "xsetmode.h" +#include "xbinary-io.h" /* The official name of this program (e.g., no 'g' prefix). */ #define PROGRAM_NAME "sum" @@ -98,7 +98,7 @@ bsd_sum_file (const char *file, int print_name) { fp = stdin; have_read_stdin = true; - xsetmode (STDIN_FILENO, O_BINARY); + xset_binary_mode (STDIN_FILENO, O_BINARY); } else { @@ -167,7 +167,7 @@ sysv_sum_file (const char *file, int print_name) { fd = STDIN_FILENO; have_read_stdin = true; - xsetmode (STDIN_FILENO, O_BINARY); + xset_binary_mode (STDIN_FILENO, O_BINARY); } else { |