From: Paul Eggert Date: Tue, 16 Dec 2014 08:41:08 +0000 (-0800) Subject: dd: fix typo in previous change X-Git-Tag: v8.24~169 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=baff828afa122cd2181360913477d99d0e513b84;p=thirdparty%2Fcoreutils.git dd: fix typo in previous change Reported by Bernhard Voelker in: http://lists.gnu.org/archive/html/bug-gnulib/2014-12/msg00191.html * src/dd.c (scanargs): s/IN/OUT/. --- diff --git a/src/dd.c b/src/dd.c index 158f4dbd48..d652fee143 100644 --- a/src/dd.c +++ b/src/dd.c @@ -1399,7 +1399,7 @@ scanargs (int argc, char *const *argv) else if (operand_is (name, "obs")) { n_min = 1; - n_max = MAX_BLOCKSIZE (INPUT_BLOCK_SLOP); + n_max = MAX_BLOCKSIZE (OUTPUT_BLOCK_SLOP); output_blocksize = n; } else if (operand_is (name, "bs"))