aboutsummaryrefslogtreecommitdiff
path: root/src/getpass.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-12-26 09:17:38 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-12-26 09:17:38 +0000
commit8ac90316d9aa1541c7e042f6807590f7a4690fb6 (patch)
tree3842027709d0972dd11ba49840556a7f269dc3b1 /src/getpass.c
parent35ba5c826d020393cf620203ef924c0f586b4e6d (diff)
nah, don't use the system's getpass() function since it too often is limited
to 8(!) or similar lengths passwords
Diffstat (limited to 'src/getpass.c')
-rw-r--r--src/getpass.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/getpass.c b/src/getpass.c
index 6ef8d3061..2d60e7f25 100644
--- a/src/getpass.c
+++ b/src/getpass.c
@@ -38,18 +38,6 @@
#include "getpass.h"
-#ifdef HAVE_GETPASS
-char *getpass_r(const char *prompt, char *password, size_t passlen)
-{
- char *ptr = getpass(prompt);
- strncpy(password, ptr, passlen);
- password[passlen-1]=0;
- return password;
-}
-#define DONE
-#else
-/* the rest of this file is only for systems without getpass() */
-
#ifdef HAVE_FCNTL_H
#include <fcntl.h>
#endif
@@ -224,7 +212,5 @@ char *getpass_r(const char *prompt, /* prompt to display */
return password; /* return pointer to buffer */
}
-#endif /* DONE */
-
#endif /* HAVE_GETPASS */
#endif /* HAVE_GETPASS_R */