aboutsummaryrefslogtreecommitdiff
path: root/lib/getpass.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2000-10-26 10:32:04 +0000
committerDaniel Stenberg <daniel@haxx.se>2000-10-26 10:32:04 +0000
commit02037971ed5a97ad78c062e753b53c7a1542bcc5 (patch)
tree4020e90be001313e9f3d54c898910d0d5d67aa15 /lib/getpass.h
parenta5b01cf4e833089ea469e32ba30ad624de3aa279 (diff)
renamed getpass() to my_getpass() and it is now thread-safe and should
disable passwd-echoing on win32 (supplied by Björn Stenberg)
Diffstat (limited to 'lib/getpass.h')
-rw-r--r--lib/getpass.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/getpass.h b/lib/getpass.h
index 33dfed668..91abe2214 100644
--- a/lib/getpass.h
+++ b/lib/getpass.h
@@ -1 +1 @@
-char *getpass(const char *prompt);
+void my_getpass(const char *prompt, char* buffer, int buflen );