From: Joe Orton Date: Fri, 22 Sep 2023 09:31:22 +0000 (+0000) Subject: * modules/dav/fs/dbm.c (dav_fs_dbm_error, dav_dbm_open_direct): Remove X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c6d7943c8f5753ac19d4aa70df367d20f6789bab;p=thirdparty%2Fapache%2Fhttpd.git * modules/dav/fs/dbm.c (dav_fs_dbm_error, dav_dbm_open_direct): Remove error message references to "property" databases since these functions are used for both propdbs and the lock database. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1912477 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/dav/fs/dbm.c b/modules/dav/fs/dbm.c index 347d75d8c59..39ab4adc581 100644 --- a/modules/dav/fs/dbm.c +++ b/modules/dav/fs/dbm.c @@ -100,7 +100,7 @@ static dav_error * dav_fs_dbm_error(dav_db *db, apr_pool_t *p, /* There might not be a if we had problems creating it. */ if (db == NULL) { errcode = 1; - errstr = "Could not open property database."; + errstr = "Could not open database."; if (APR_STATUS_IS_EDSOOPEN(status)) ap_log_error(APLOG_MARK, APLOG_CRIT, status, ap_server_conf, APLOGNO(00576) "The DBM driver could not be loaded"); @@ -147,7 +147,7 @@ dav_error * dav_dbm_open_direct(apr_pool_t *p, const char *pathname, int ro, "mod_dav_fs: The DBM library '%s' could not be loaded: %s", err->reason, err->msg); return dav_new_error(p, HTTP_INTERNAL_SERVER_ERROR, 1, status, - "Could not load library for property database."); + "Could not load library for database."); } if ((status = apr_dbm_open2(&file, driver, pathname, ro ? APR_DBM_READONLY : APR_DBM_RWCREATE,