summaryrefslogtreecommitdiff
path: root/passwd/apr_getpass.c
diff options
context:
space:
mode:
Diffstat (limited to 'passwd/apr_getpass.c')
-rw-r--r--passwd/apr_getpass.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/passwd/apr_getpass.c b/passwd/apr_getpass.c
index 6e4cbef3a..5426b8a36 100644
--- a/passwd/apr_getpass.c
+++ b/passwd/apr_getpass.c
@@ -113,9 +113,6 @@ static char *get_password(const char *prompt)
* The only way is to use the GUI so the getpass should be implemented
* on per-application basis.
*/
-#ifdef _WIN32_WCE
- return NULL;
-#else
static char password[128];
int n = 0;
int ch;
@@ -169,7 +166,6 @@ static char *get_password(const char *prompt)
fputc('\n', stderr);
password[n] = '\0';
return password;
-#endif
}
#elif defined (HAVE_TERMIOS_H)