aboutsummaryrefslogtreecommitdiff
path: root/lib/getpass.c
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.c
parent36000e52876cddac768cd0447980b1aa88c77ee6 (diff)
getpass_r() is the new getpass name for thread-safe getpass!
Diffstat (limited to 'lib/getpass.c')
-rw-r--r--lib/getpass.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/getpass.c b/lib/getpass.c
index d18f6d79f..245782027 100644
--- a/lib/getpass.c
+++ b/lib/getpass.c
@@ -5,7 +5,7 @@
*
* 1) This header remain in tact.
* 2) The prototype for getpass is not changed from:
- * char *getpass(const char *prompt)
+ * int getpass_r(const char *prompt, char *buffer, int buflen)
* 3) This source code is not used outside of this(getpass.c) file.
* 3) Any changes to this(getpass.c) source code are made publicly available.
*
@@ -68,7 +68,7 @@
# define perror(x) fprintf(stderr, "Error in: %s\n", x)
#endif
-int my_getpass(void *client, const char *prompt, char *buffer, int buflen)
+int getpass_r(const char *prompt, char *buffer, int buflen)
{
FILE *infp;
FILE *outfp;
@@ -181,7 +181,7 @@ int my_getpass(void *client, const char *prompt, char *buffer, int buflen)
#else /* WIN32 */
#include <stdio.h>
#include <conio.h>
-int my_getpass(void *client, const char *prompt, char *buffer, int buflen)
+int getpass_r(const char *prompt, char *buffer, int buflen)
{
int i;
printf("%s", prompt);