summaryrefslogtreecommitdiff
path: root/passwd
diff options
context:
space:
mode:
authorMladen Turk <mturk@apache.org>2021-12-02 21:21:18 +0000
committerMladen Turk <mturk@apache.org>2021-12-02 21:21:18 +0000
commit6487330c38e3c0430782a5ceca674b94398f347f (patch)
treeededff55d7051624a164926ea86ad603d6776026 /passwd
parent2520ce23f2830c59cfc2786effbbe72903c49ad5 (diff)
downloadapr-6487330c38e3c0430782a5ceca674b94398f347f.tar.gz
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
Diffstat (limited to 'passwd')
-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)