summaryrefslogtreecommitdiffstats
path: root/Source/CTest/Curl/netrc.c
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2003-05-06 15:26:42 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2003-05-06 15:26:42 (GMT)
commit7804b053f112cb18a606e4796e5249c4d09331be (patch)
tree2d7b0f153d2218216443f478e485f0638a372f35 /Source/CTest/Curl/netrc.c
parentb9eed3ea186a4a1a034b78a3ddac035e856e23b7 (diff)
downloadCMake-7804b053f112cb18a606e4796e5249c4d09331be.zip
CMake-7804b053f112cb18a606e4796e5249c4d09331be.tar.gz
CMake-7804b053f112cb18a606e4796e5249c4d09331be.tar.bz2
ERR: Remove warnings on icc
Diffstat (limited to 'Source/CTest/Curl/netrc.c')
-rw-r--r--Source/CTest/Curl/netrc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/CTest/Curl/netrc.c b/Source/CTest/Curl/netrc.c
index a8f0c01..da10a33 100644
--- a/Source/CTest/Curl/netrc.c
+++ b/Source/CTest/Curl/netrc.c
@@ -95,7 +95,8 @@ int Curl_parsenetrc(char *host,
pw= getpwuid(geteuid());
if (pw) {
#ifdef VMS
- home = decc$translate_vms(pw->pw_dir);
+ /* VMS does not work because of warnings on icc */
+ /* home = decc$translate_vms(pw->pw_dir); */
#else
home = pw->pw_dir;
#endif