Loading modules/aaa/mod_auth_dbm.c +1 −1 Original line number Diff line number Diff line Loading @@ -177,7 +177,7 @@ static char *get_dbm_pw(request_rec *r, char *user, char *auth_dbmpwfile) #endif #ifdef AP_AUTH_DBM_USE_APR if (!(retval = dbm_open(&f, auth_dbmpwfile, APR_DBM_READONLY, r->pool))) { if (!(retval = dbm_open(&f, auth_dbmpwfile, APR_DBM_READONLY, APR_OS_DEFAULT, r->pool))) { ap_log_rerror(APLOG_MARK, APLOG_ERR, retval, r, "could not open sdbm auth file: %s", auth_dbmpwfile); return NULL; Loading modules/dav/fs/dbm.c +2 −1 Original line number Diff line number Diff line Loading @@ -143,7 +143,8 @@ dav_error * dav_dbm_open_direct(apr_pool_t *p, const char *pathname, int ro, *pdb = NULL; if ((status = apr_dbm_open(&file, pathname, ro ? APR_DBM_READONLY : APR_DBM_RWCREATE, p)) ro ? APR_DBM_READONLY : APR_DBM_RWCREATE, APR_OS_DEFAULT, p)) != APR_SUCCESS && !ro) { /* ### do something with 'status' */ Loading Loading
modules/aaa/mod_auth_dbm.c +1 −1 Original line number Diff line number Diff line Loading @@ -177,7 +177,7 @@ static char *get_dbm_pw(request_rec *r, char *user, char *auth_dbmpwfile) #endif #ifdef AP_AUTH_DBM_USE_APR if (!(retval = dbm_open(&f, auth_dbmpwfile, APR_DBM_READONLY, r->pool))) { if (!(retval = dbm_open(&f, auth_dbmpwfile, APR_DBM_READONLY, APR_OS_DEFAULT, r->pool))) { ap_log_rerror(APLOG_MARK, APLOG_ERR, retval, r, "could not open sdbm auth file: %s", auth_dbmpwfile); return NULL; Loading
modules/dav/fs/dbm.c +2 −1 Original line number Diff line number Diff line Loading @@ -143,7 +143,8 @@ dav_error * dav_dbm_open_direct(apr_pool_t *p, const char *pathname, int ro, *pdb = NULL; if ((status = apr_dbm_open(&file, pathname, ro ? APR_DBM_READONLY : APR_DBM_RWCREATE, p)) ro ? APR_DBM_READONLY : APR_DBM_RWCREATE, APR_OS_DEFAULT, p)) != APR_SUCCESS && !ro) { /* ### do something with 'status' */ Loading