summaryrefslogtreecommitdiff
path: root/lib-src/rcs-checkin
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
commitca452d5f798276bc3ee9ad868d41773a0217983e (patch)
treeb8ae2db8864a6041c1d8689877aa59bffba85091 /lib-src/rcs-checkin
parent764954eff28b44c525ec15dd835594fa14196c04 (diff)
Use test -r instead of < to check readability, to avoid syntax error.
Diffstat (limited to 'lib-src/rcs-checkin')
-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 7b894eac83..3f41d48b0d 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.