]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
* tests/mv/hard-3: Correct the preceding change: $3 -> $2.
authorJim Meyering <jim@meyering.net>
Thu, 22 Mar 2007 21:11:03 +0000 (22:11 +0100)
committerJim Meyering <jim@meyering.net>
Thu, 22 Mar 2007 21:11:03 +0000 (22:11 +0100)
ChangeLog
tests/mv/hard-3

index 10e34552bb263a6b103352ee0c54c02a77d3b12c..1648c16767491a7b94acb32ad307594e14a5cd40 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2007-03-22  Jim Meyering  <jim@meyering.net>
+
+       * tests/mv/hard-3: Correct the preceding change: $3 -> $2.
+
 2007-03-22  Paul Eggert  <eggert@cs.ucla.edu>
 
        Improve a test script.
index b912da34f8f424c6cfbdc55bcbc38e9c58aaae0a..ce8372840e513f94e8f66105106b94a65648a7c6 100755 (executable)
@@ -78,12 +78,12 @@ test -f x/b || fail=1
 test -f c || fail=1
 
 # The i-node numbers of a and c must be the same.
-ia=`ls -i a` || fail=1; set x $ia; ia=$3
-ic=`ls -i c` || fail=1; set x $ic; ic=$3
+ia=`ls -i a` || fail=1; set x $ia; ia=$2
+ic=`ls -i c` || fail=1; set x $ic; ic=$2
 test "$ia" = "$ic" || fail=1
 
 # The i-node number of x/b must be different.
-ib=`ls -i x/b` || fail=1; set x $ib; ib=$3
+ib=`ls -i x/b` || fail=1; set x $ib; ib=$2
 test "$ia" = "$ib" && fail=1
 
 (exit $fail); exit $fail