]> granicus.if.org Git - apache/commitdiff
* modules/aaa/mod_authn_dbm.c (fetch_dbm_value): No functional change:
authorJoe Orton <jorton@apache.org>
Wed, 9 Jan 2019 09:34:34 +0000 (09:34 +0000)
committerJoe Orton <jorton@apache.org>
Wed, 9 Jan 2019 09:34:34 +0000 (09:34 +0000)
  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

index 0df9b6dc48024318b4de5a775efc572e2d063940..46fe6ffc8025886eb5277fd0489a7aefe6ffef3c 100644 (file)
@@ -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,