diff options
author | Ruediger Pluem <rpluem@apache.org> | 2008-06-04 19:02:23 +0000 |
---|---|---|
committer | Ruediger Pluem <rpluem@apache.org> | 2008-06-04 19:02:23 +0000 |
commit | 3cd930ee1481098c7c7882abda94f6308d50570a (patch) | |
tree | 82da7deacffc6e7d4f2d1181ebb769b4afa88d6c /passwd | |
parent | e136f1248ff54133501575d047d28a9beb880b75 (diff) | |
download | apr-3cd930ee1481098c7c7882abda94f6308d50570a.tar.gz |
* Fix some gcc compiler warnings on Solaris
Patch to atomic/unix/solaris.c submitted by: Henry Jen <henryjen ztune.net>
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@663342 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'passwd')
-rw-r--r-- | passwd/apr_getpass.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/passwd/apr_getpass.c b/passwd/apr_getpass.c index 369c6e603..ac45815c3 100644 --- a/passwd/apr_getpass.c +++ b/passwd/apr_getpass.c @@ -70,7 +70,7 @@ #define ERR_OVERFLOW 5 -#ifndef HAVE_GETPASS +#if !defined(HAVE_GETPASS) && !defined(HAVE_GETPASSPHRASE) /* MPE, Win32, NetWare and BeOS all lack a native getpass() */ |