mirror of
https://github.com/curl/curl.git
synced 2026-08-26 02:53:30 +03:00
VMS specific preprocessor symbol checking adjustments
This commit is contained in:
parent
0dde9056d7
commit
3184a91ec8
27 changed files with 47 additions and 47 deletions
|
|
@ -33,7 +33,7 @@
|
|||
#ifdef HAVE_PWD_H
|
||||
#include <pwd.h>
|
||||
#endif
|
||||
#ifdef VMS
|
||||
#ifdef __VMS
|
||||
#include <unixlib.h>
|
||||
#endif
|
||||
|
||||
|
|
@ -117,7 +117,7 @@ int Curl_parsenetrc(const char *host,
|
|||
struct passwd *pw;
|
||||
pw= getpwuid(geteuid());
|
||||
if(pw) {
|
||||
#ifdef VMS
|
||||
#ifdef __VMS
|
||||
home = decc_translate_vms(pw->pw_dir);
|
||||
#else
|
||||
home = pw->pw_dir;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue