View | Details | Raw Unified | Return to bug 64814
Collapse All | Expand All

(-)a/modules/dav/fs/lock.c (-1 / +3 lines)
Lines 312-318 static dav_error * dav_fs_really_open_lockdb(dav_lockdb *lockdb) Link Here
312
        return dav_push_error(lockdb->info->pool,
312
        return dav_push_error(lockdb->info->pool,
313
                              HTTP_INTERNAL_SERVER_ERROR,
313
                              HTTP_INTERNAL_SERVER_ERROR,
314
                              DAV_ERR_LOCK_OPENDB,
314
                              DAV_ERR_LOCK_OPENDB,
315
                              "Could not open the lock database.",
315
                              apr_psprintf(lockdb->info->pool,
316
                                "Could not open the lock database: %s",
317
                                lockdb->info->lockdb_path),
316
                              err);
318
                              err);
317
    }
319
    }
318
320
(-)a/modules/dav/lock/locks.c (-1 / +3 lines)
Lines 328-334 static dav_error * dav_generic_really_open_lockdb(dav_lockdb *lockdb) Link Here
328
        return dav_push_error(lockdb->info->pool,
328
        return dav_push_error(lockdb->info->pool,
329
                              HTTP_INTERNAL_SERVER_ERROR,
329
                              HTTP_INTERNAL_SERVER_ERROR,
330
                              DAV_ERR_LOCK_OPENDB,
330
                              DAV_ERR_LOCK_OPENDB,
331
                              "Could not open the lock database.",
331
                              apr_psprintf(lockdb->info->pool,
332
                                "Could not open the lock database: %s",
333
                                lockdb->info->lockdb_path),
332
                              err);
334
                              err);
333
    }
335
    }
334
336

Return to bug 64814