]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Remove trailing /. from diagnostic.
authorJim Meyering <jim@meyering.net>
Sat, 4 Jan 2003 09:03:45 +0000 (09:03 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 4 Jan 2003 09:03:45 +0000 (09:03 +0000)
tests/rm/rm2
tests/rm/unread2

index e2d83f611317919ab6437442ab6acdd74d9b5607..f9622e0d2d9f48cb267da448cf521f7b59b17b30 100755 (executable)
@@ -33,7 +33,7 @@ fail=0
 # Both of these should fail.
 rm -rf a b > out 2>&1 && fail=1
 cat <<EOF > exp
-rm: cannot chdir from \`a/.' to \`1': Permission denied
+rm: cannot chdir from \`a' to \`1': Permission denied
 rm: cannot chdir from \`.' to \`b': Permission denied
 EOF
 
index 730f88b552540fe577bf13d26edfea58e462c5f0..e9be46e856d7073233801b485231633e1de829aa 100755 (executable)
@@ -31,7 +31,7 @@ fail=0
 # This should fail.
 rm -rf a > out 2>&1 && fail=1
 cat <<EOF > exp
-rm: cannot open directory \`a/.': Permission denied
+rm: cannot open directory \`a': Permission denied
 EOF
 
 cmp out exp || fail=1