mirror of
https://github.com/samba-team/samba.git
synced 2025-03-01 04:58:35 +03:00
Give a more useful error when the templates.ldb can't be found.
Andrew Bartlett (This used to be commit 26108eb66b4b5d4b339dfc845e8a018190068e81)
This commit is contained in:
parent
6e965b139d
commit
19fcdb2e8a
@ -103,8 +103,8 @@ int samdb_copy_template(struct ldb_context *ldb,
|
||||
|
||||
if (!templates_ldb) {
|
||||
templates_ldb_path = samdb_relative_path(ldb,
|
||||
msg,
|
||||
"templates.ldb");
|
||||
msg,
|
||||
"templates.ldb");
|
||||
if (!templates_ldb_path) {
|
||||
*errstring = talloc_asprintf(msg, "samdb_copy_template: ERROR: Failed to contruct path for template db");
|
||||
return LDB_ERR_OPERATIONS_ERROR;
|
||||
@ -115,6 +115,8 @@ int samdb_copy_template(struct ldb_context *ldb,
|
||||
NULL, 0, NULL);
|
||||
talloc_free(templates_ldb_path);
|
||||
if (!templates_ldb) {
|
||||
*errstring = talloc_asprintf(msg, "samdb_copy_template: ERROR: Failed to connect to templates db at: %s",
|
||||
templates_ldb_path);
|
||||
return LDB_ERR_OPERATIONS_ERROR;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user