diff options
author | Doug MacEachern <dougm@apache.org> | 2001-02-08 07:45:23 +0000 |
---|---|---|
committer | Doug MacEachern <dougm@apache.org> | 2001-02-08 07:45:23 +0000 |
commit | bc1b73cb6002c158ead8d736f25eb70d5124ecda (patch) | |
tree | 136752321dd3e22c22463c9ab35a700ab0507729 /include/apr_lib.h | |
parent | 2d3db4e26d42b1fd65bb65bc17f247b0c78a25f6 (diff) | |
download | apr-bc1b73cb6002c158ead8d736f25eb70d5124ecda.tar.gz |
renaming various functions for consistency sake
see: http://apr.apache.org/~dougm/apr_rename.pl
PR:
Obtained from:
Submitted by:
Reviewed by:
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@61194 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_lib.h')
-rw-r--r-- | include/apr_lib.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/apr_lib.h b/include/apr_lib.h index fbaeac5c3..50bf956d9 100644 --- a/include/apr_lib.h +++ b/include/apr_lib.h @@ -212,9 +212,9 @@ APR_DECLARE(int) apr_vformatter(int (*flush_func)(apr_vformatter_buff_t *b), * Validate any password encypted with any algorithm that APR understands * @param passwd The password to validate * @param hash The password to validate against - * @deffunc apr_status_t apr_validate_password(const char *passwd, const char *hash) + * @deffunc apr_status_t apr_password_validate(const char *passwd, const char *hash) */ -APR_DECLARE(apr_status_t) apr_validate_password(const char *passwd, +APR_DECLARE(apr_status_t) apr_password_validate(const char *passwd, const char *hash); /* @@ -264,9 +264,9 @@ APR_DECLARE(int) apr_vsnprintf(char *buf, size_t len, const char *format, * @param prompt The prompt to display * @param pwbuf Where to store the password * @param bufsize The length of the password string. - * @deffunc apr_status_t apr_getpass(const char *prompt, char *pwbuf, size_t *bufsize) + * @deffunc apr_status_t apr_password_get(const char *prompt, char *pwbuf, size_t *bufsize) */ -APR_DECLARE(apr_status_t) apr_getpass(const char *prompt, char *pwbuf, +APR_DECLARE(apr_status_t) apr_password_get(const char *prompt, char *pwbuf, size_t *bufsize); #ifdef __cplusplus |