diff options
author | Joe Orton <jorton@apache.org> | 2019-01-09 10:34:34 +0100 |
---|---|---|
committer | Joe Orton <jorton@apache.org> | 2019-01-09 10:34:34 +0100 |
commit | b6fb1330df6c4ab4a68fa1b3fba8566732c06d85 (patch) | |
tree | e8bff90b48e7abd4ae54267a26cb5f24c0ae6b5e /modules/aaa | |
parent | * modules/md/md_acme_drive.c (acme_driver_init): (diff) | |
download | apache2-b6fb1330df6c4ab4a68fa1b3fba8566732c06d85.tar.xz apache2-b6fb1330df6c4ab4a68fa1b3fba8566732c06d85.zip |
* modules/aaa/mod_authn_dbm.c (fetch_dbm_value): No functional change:
return APR_SUCCESS rather than rv, which is guaranteed to be
APR_SUCCESS in current code.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1850835 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/aaa')
-rw-r--r-- | modules/aaa/mod_authn_dbm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/aaa/mod_authn_dbm.c b/modules/aaa/mod_authn_dbm.c index 0df9b6dc48..46fe6ffc80 100644 --- a/modules/aaa/mod_authn_dbm.c +++ b/modules/aaa/mod_authn_dbm.c @@ -101,7 +101,7 @@ static apr_status_t fetch_dbm_value(const char *dbmtype, const char *dbmfile, apr_dbm_close(f); - return rv; + return APR_SUCCESS; } static authn_status check_dbm_pw(request_rec *r, const char *user, |