Commit f456b484 authored by Joe Orton's avatar Joe Orton
Browse files

* 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
parent ebeee23f
Loading
Loading
Loading
Loading
+1 −1
Changes for modules/aaa/mod_authn_dbm.c: 1 added line, 1 removed line.
Original line number Diff line number Diff line
@@ -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,