aboutsummaryrefslogtreecommitdiff
path: root/lib/getpass.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2000-11-06 23:18:50 +0000
committerDaniel Stenberg <daniel@haxx.se>2000-11-06 23:18:50 +0000
commit56548f9a13b9438ca2be3760f486f5441f679057 (patch)
treeec868352a222ba2ce9b42d53d0b51194db044605 /lib/getpass.h
parent36000e52876cddac768cd0447980b1aa88c77ee6 (diff)
getpass_r() is the new getpass name for thread-safe getpass!
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 1248030ee..2f63e6db0 100644
--- a/lib/getpass.h
+++ b/lib/getpass.h
@@ -3,6 +3,6 @@
/*
* Returning non-zero will abort the continued operation!
*/
-int my_getpass(void *client, char *prompt, char* buffer, int buflen );
+int getpass_r(char *prompt, char* buffer, int buflen );
#endif