]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
dd: fix typo in previous change
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 16 Dec 2014 08:41:08 +0000 (00:41 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 16 Dec 2014 08:41:22 +0000 (00:41 -0800)
Reported by Bernhard Voelker in:
http://lists.gnu.org/archive/html/bug-gnulib/2014-12/msg00191.html
* src/dd.c (scanargs): s/IN/OUT/.

src/dd.c

index 158f4dbd48f25f609700dc6a8aec398dc7193386..d652fee1435ab7177ae9d24305c9deb26a344473 100644 (file)
--- 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"))