--- /src_root/curl/src/tool_homedir.c Fri Dec 28 21:00:10 2012 +++ /vms_root/curl/src/tool_homedir.c Mon Dec 31 11:05:41 2012 @@ -24,9 +24,6 @@ #ifdef HAVE_PWD_H # include #endif -#ifdef __VMS -# include -#endif #include "tool_homedir.h" @@ -56,16 +53,9 @@ } #else (void)do_expand; -#ifdef __VMS - env = getenv(variable); - if(env && strcmp("HOME",variable) == 0) { - env = decc_translate_vms(env); - } -#else /* no length control */ env = getenv(variable); #endif -#endif return (env && env[0]) ? strdup(env) : NULL; } @@ -87,11 +77,7 @@ struct passwd *pw = getpwuid(geteuid()); if(pw) { -#ifdef __VMS - home = decc_translate_vms(pw->pw_dir); -#else home = pw->pw_dir; -#endif if(home && home[0]) home = strdup(home); else