diff options
author | Yang Tse <yangsita@gmail.com> | 2009-12-30 17:59:56 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2009-12-30 17:59:56 +0000 |
commit | 3184a91ec86b2f35f16a8e11e2daa03fac8e91b6 (patch) | |
tree | 1f9a39c4001243eae8b7b45f98951502a51fea0d /src/getpass.c | |
parent | 0dde9056d7c21dd9ad0afcb8fe2f4ec2408acf10 (diff) | |
download | curl-3184a91ec86b2f35f16a8e11e2daa03fac8e91b6.tar.gz |
VMS specific preprocessor symbol checking adjustments
Diffstat (limited to 'src/getpass.c')
-rw-r--r-- | src/getpass.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/getpass.c b/src/getpass.c index 8d20eb48c..a46d8e30d 100644 --- a/src/getpass.c +++ b/src/getpass.c @@ -5,7 +5,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2008, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2009, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -54,7 +54,7 @@ #include "memdebug.h" #endif -#ifdef VMS +#ifdef __VMS /* VMS implementation */ #include descrip #include starlet @@ -93,7 +93,7 @@ char *getpass_r(const char *prompt, char *buffer, size_t buflen) return buffer; /* we always return success */ } #define DONE -#endif /* VMS */ +#endif /* __VMS */ #ifdef WIN32 |