summaryrefslogtreecommitdiff
path: root/lib-src
diff options
context:
space:
mode:
authorDavid J. MacKenzie <djm@gnu.org>1994-10-19 21:27:58 +0000
committerDavid J. MacKenzie <djm@gnu.org>1994-10-19 21:27:58 +0000
commitbe9b12be8f0f020d7f5c03defab3222d16033b86 (patch)
treed841f29ff4095a978ce725a5b3fbcabf3671e848 /lib-src
parent9d5a083f685dd6e1ccdf52e59f86b74b89c0494f (diff)
downloademacs-be9b12be8f0f020d7f5c03defab3222d16033b86.tar.gz
Use test -r instead of < to check readability, to avoid syntax error.
Diffstat (limited to 'lib-src')
-rwxr-xr-xlib-src/rcs-checkin2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib-src/rcs-checkin b/lib-src/rcs-checkin
index 7b894eac83d..3f41d48b0da 100755
--- a/lib-src/rcs-checkin
+++ b/lib-src/rcs-checkin
@@ -44,7 +44,7 @@ do
test -f "$file" || continue
# Check that file is readable.
- <$file || exit
+ test -r "$file" || exit
# If the RCS file does not already exist,
# initialize it with a description from $file's first line.