summaryrefslogtreecommitdiff
path: root/passwd/apr_getpass.c
diff options
context:
space:
mode:
authororlikowski <orlikowski@13f79535-47bb-0310-9956-ffa450edef68>2002-07-10 06:01:13 +0000
committerorlikowski <orlikowski@13f79535-47bb-0310-9956-ffa450edef68>2002-07-10 06:01:13 +0000
commit098c035f3bfc3782e51ab6163d7e78d4fcd10385 (patch)
tree9c4ad61c42125bd4c79104e6910e1ecb4da2c289 /passwd/apr_getpass.c
parenta56172a7141e17dc0e99d61fb7313c81ccbe955e (diff)
downloadlibapr-098c035f3bfc3782e51ab6163d7e78d4fcd10385.tar.gz
Continue the Bill Rowe apr_size_t crusade.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63595 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'passwd/apr_getpass.c')
-rw-r--r--passwd/apr_getpass.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/passwd/apr_getpass.c b/passwd/apr_getpass.c
index 199f4fc26..cf84b7f1d 100644
--- a/passwd/apr_getpass.c
+++ b/passwd/apr_getpass.c
@@ -223,7 +223,7 @@ static char *getpass(const char *prompt)
* smaller than our own.
*/
-APR_DECLARE(apr_status_t) apr_password_get(const char *prompt, char *pwbuf, size_t *bufsiz)
+APR_DECLARE(apr_status_t) apr_password_get(const char *prompt, char *pwbuf, apr_size_t *bufsiz)
{
char *pw_got = getpass(prompt);
if (!pw_got)