From 6487330c38e3c0430782a5ceca674b94398f347f Mon Sep 17 00:00:00 2001 From: Mladen Turk Date: Thu, 2 Dec 2021 21:21:18 +0000 Subject: Stage 3 in dismantling _WIN32_WCE ... cleanup code git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1895508 13f79535-47bb-0310-9956-ffa450edef68 --- passwd/apr_getpass.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'passwd') 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) -- cgit v1.2.1