diff options
| author | Andrew Bartlett <abartlet@samba.org> | 2009-07-07 12:34:55 +1000 |
|---|---|---|
| committer | Andrew Bartlett <abartlet@samba.org> | 2009-07-16 11:31:37 +1000 |
| commit | c901f57ce31cb6deaf2897e12b3b14a25fe9e12f (patch) | |
| tree | 24a275601a78ab9af3b46329553d1a1a9dfe1e45 | |
| parent | e25325539a86912ce620875ef07beff5bcde6060 (diff) | |
| download | samba-c901f57ce31cb6deaf2897e12b3b14a25fe9e12f.tar.gz samba-c901f57ce31cb6deaf2897e12b3b14a25fe9e12f.tar.bz2 samba-c901f57ce31cb6deaf2897e12b3b14a25fe9e12f.zip | |
s4:kdc Initialise new hdb function pointers.
Soon we will add implementations for these.
| -rw-r--r-- | source4/kdc/hdb-samba4.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source4/kdc/hdb-samba4.c b/source4/kdc/hdb-samba4.c index 84050edb7c..21e8c9a38e 100644 --- a/source4/kdc/hdb-samba4.c +++ b/source4/kdc/hdb-samba4.c @@ -1468,6 +1468,9 @@ NTSTATUS kdc_hdb_samba4_create(TALLOC_CTX *mem_ctx, (*db)->hdb__del = NULL; (*db)->hdb_destroy = LDB_destroy; + (*db)->hdb_auth_status = NULL; + (*db)->hdb_check_constrained_delegation = NULL; + return NT_STATUS_OK; } |
