summaryrefslogtreecommitdiff
path: root/vms
diff options
context:
space:
mode:
authorCraig A. Berry <craigberry@mac.com>2017-10-25 20:28:23 -0500
committerCraig A. Berry <craigberry@mac.com>2017-10-25 20:29:00 -0500
commitb0c1d0e348ec7f0d26d461486777b460121400a9 (patch)
tree214d17ca8d0db0b2e18881baa962676cb7f2e6cf /vms
parentb2b30beea3809b0ad7321ea70174c1606e5bf30b (diff)
downloadperl-b0c1d0e348ec7f0d26d461486777b460121400a9.tar.gz
Restore parenthesis that went missing in 083b2a61ee6281f.
Diffstat (limited to 'vms')
-rw-r--r--vms/vms.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vms/vms.c b/vms/vms.c
index 7750b935a0..d0483f6164 100644
--- a/vms/vms.c
+++ b/vms/vms.c
@@ -293,7 +293,7 @@ is_unix_filespec(const char *path)
/* If the user wants UNIX files, "." needs to be treated as in UNIX */
if (decc_filename_unix_report || decc_filename_unix_only) {
- if (strEQ(path,".")
+ if (strEQ(path,"."))
ret_val = 1;
}
}