From: Joe Orton Date: Wed, 9 Jan 2019 09:34:34 +0000 (+0000) Subject: * modules/aaa/mod_authn_dbm.c (fetch_dbm_value): No functional change: X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b6fb1330df6c4ab4a68fa1b3fba8566732c06d85;p=apache * 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 --- 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,