diff options
-rw-r--r-- | coreutils/dd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/dd.c b/coreutils/dd.c index 7247f55..b7979d6 100644 --- a/coreutils/dd.c +++ b/coreutils/dd.c @@ -268,7 +268,7 @@ int dd_main(int argc, char **argv) goto die_outfile; } - while ((flags & FLAG_COUNT) && (G.in_full + G.in_part != count)) { + while (!(flags & FLAG_COUNT) || (G.in_full + G.in_part != count)) { if (flags & FLAG_NOERROR) /* Pre-zero the buffer if conv=noerror */ memset(ibuf, 0, ibs); n = safe_read(ifd, ibuf, ibs); |