aboutsummaryrefslogtreecommitdiffstats
path: root/g10/keyserver.c
diff options
context:
space:
mode:
Diffstat (limited to 'g10/keyserver.c')
-rw-r--r--g10/keyserver.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/g10/keyserver.c b/g10/keyserver.c
index 0c67f9b64..80e934ef3 100644
--- a/g10/keyserver.c
+++ b/g10/keyserver.c
@@ -1012,7 +1012,9 @@ keyserver_spawn(enum ks_action action,STRLIST list,KEYDB_SEARCH_DESC *desc,
command=xmalloc(strlen(libexecdir)+strlen(DIRSEP_S)+
GPGKEYS_PREFIX_LEN+strlen(scheme)+3+strlen(EXEEXT)+1);
strcpy(command,libexecdir);
- strcat(command,DIRSEP_S);
+#ifndef __VMS
+ strcat (command, DIRSEP_S);
+#endif
}
end=command+strlen(command);