1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-14 20:23:54 +03:00

r14599: Pass ACLs down the registry layer.

This commit is contained in:
Jelmer Vernooij
2006-03-21 01:30:22 +00:00
committed by Gerald (Jerry) Carter
parent ace171f94c
commit 6cdefd8945
14 changed files with 38 additions and 25 deletions

View File

@@ -262,8 +262,8 @@ static WERROR ldb_open_hive(struct registry_hive *hive, struct registry_key **k)
struct ldb_context *wrap;
if (!hive->location) return WERR_INVALID_PARAM;
/* TODO: Support remoting with credentials and ACLs with session tokens */
wrap = ldb_wrap_connect(hive, hive->location, NULL, NULL, 0, NULL);
wrap = ldb_wrap_connect(hive, hive->location, hive->session_info, hive->credentials, 0, NULL);
if(!wrap) {
DEBUG(1, ("ldb_open_hive: unable to connect\n"));