From: Jim Meyering Date: Fri, 1 Jan 1999 22:28:40 +0000 (+0000) Subject: (head_bytes, head_lines) [O_BINARY]: Use binary I/O. X-Git-Tag: FILEUTILS-4_1-b2~56 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9eedfd24825177e5ebe42bdac856ab15b8274a9c;p=thirdparty%2Fcoreutils.git (head_bytes, head_lines) [O_BINARY]: Use binary I/O. --- diff --git a/src/head.c b/src/head.c index 869e450f89..474ff8bc50 100644 --- a/src/head.c +++ b/src/head.c @@ -1,5 +1,5 @@ /* head -- output first part of file(s) - Copyright (C) 89, 90, 91, 95, 96, 1997, 1998 Free Software Foundation, Inc. + Copyright (C) 89, 90, 91, 1995-1998, 1999 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -124,6 +124,9 @@ head_bytes (const char *filename, int fd, U_LONG_LONG bytes_to_write) char buffer[BUFSIZE]; int bytes_read; + /* Need BINARY I/O for the byte counts to be accurate. */ + SET_BINARY2 (fd, fileno (stdout)); + while (bytes_to_write) { bytes_read = safe_read (fd, buffer, BUFSIZE); @@ -150,6 +153,9 @@ head_lines (const char *filename, int fd, U_LONG_LONG lines_to_write) int bytes_read; int bytes_to_write; + /* Need BINARY I/O for the byte counts to be accurate. */ + SET_BINARY2 (fd, fileno (stdout)); + while (lines_to_write) { bytes_read = safe_read (fd, buffer, BUFSIZE);