summaryrefslogtreecommitdiffstats
path: root/Source/CTest/Curl/getenv.c
diff options
context:
space:
mode:
Diffstat (limited to 'Source/CTest/Curl/getenv.c')
-rw-r--r--Source/CTest/Curl/getenv.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/CTest/Curl/getenv.c b/Source/CTest/Curl/getenv.c
index e19bad2..efb4be1 100644
--- a/Source/CTest/Curl/getenv.c
+++ b/Source/CTest/Curl/getenv.c
@@ -53,7 +53,8 @@ char *GetEnv(const char *variable)
#ifdef VMS
char *env = getenv(variable);
if (env && strcmp("HOME",variable) == 0) {
- env = decc$translate_vms(env);
+ /* VMS does not work because of warning on icc */
+ /* env = decc$translate_vms(env); */
}
#else
/* no length control */