aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2008-09-12 11:18:17 +0000
committerYang Tse <yangsita@gmail.com>2008-09-12 11:18:17 +0000
commitaac739ccd2a04105bad4c189b36ed7c5190775df (patch)
tree24193c9b065288597fe09d7921c3ec8fc8abccf9 /src
parentc3d1b07c455928de7497677b2da7ffa470a62fee (diff)
ANSI C compatibility adjustment
Diffstat (limited to 'src')
-rw-r--r--src/homedir.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/homedir.c b/src/homedir.c
index d9bc39fe5..e8392f192 100644
--- a/src/homedir.c
+++ b/src/homedir.c
@@ -71,7 +71,7 @@ char *GetEnv(const char *variable, char do_expand)
#ifdef VMS
env = getenv(variable);
if (env && strcmp("HOME",variable) == 0) {
- env = decc$translate_vms(env);
+ env = decc_translate_vms(env);
}
#else
/* no length control */
@@ -100,7 +100,7 @@ char *homedir(void)
if (pw) {
#ifdef VMS
- home = decc$translate_vms(pw->pw_dir);
+ home = decc_translate_vms(pw->pw_dir);
#else
home = pw->pw_dir;
#endif