mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
Give a more useful error when the templates.ldb can't be found.
Andrew Bartlett
This commit is contained in:
parent
b7ea06850a
commit
26108eb66b
@ -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…
Reference in New Issue
Block a user