From b6fb1330df6c4ab4a68fa1b3fba8566732c06d85 Mon Sep 17 00:00:00 2001 From: Joe Orton Date: Wed, 9 Jan 2019 09:34:34 +0000 Subject: [PATCH] * 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 --- modules/aaa/mod_authn_dbm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, -- 2.40.0