summaryrefslogtreecommitdiff
path: root/vmsify.c
diff options
context:
space:
mode:
Diffstat (limited to 'vmsify.c')
-rw-r--r--vmsify.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/vmsify.c b/vmsify.c
index d8d3d85..7520a72 100644
--- a/vmsify.c
+++ b/vmsify.c
@@ -79,9 +79,11 @@ copyto (char **to, char **from, char upto, int as_dir)
}
else
{
+#ifdef HAVE_CASE_INSENSITIVE_FS
if (isupper ((unsigned char)**from))
**to = tolower ((unsigned char)**from);
else
+#endif
**to = **from;
}
(*to)++;