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-Tag: 2.5.0-alpha2-ci-test-only~2221 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b6fb1330df6c4ab4a68fa1b3fba8566732c06d85;p=thirdparty%2Fapache%2Fhttpd.git * 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 0df9b6dc480..46fe6ffc802 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,