From 7c972d83d268a277501626122ab1c7cdddc0f4a3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?G=C3=BCnther=20Deschner?= Date: Tue, 25 Aug 2009 21:45:24 +0200 Subject: [PATCH] s3-schannel: make open_schannel_session_store() public. Guenther --- source3/include/proto.h | 1 + source3/passdb/secrets.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/source3/include/proto.h b/source3/include/proto.h index 0da8c25a395..d6ee5ed65fb 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -4732,6 +4732,7 @@ NTSTATUS secrets_trusted_domains(TALLOC_CTX *mem_ctx, uint32 *num_domains, bool secrets_store_afs_keyfile(const char *cell, const struct afs_keyfile *keyfile); bool secrets_fetch_afs_key(const char *cell, struct afs_key *result); void secrets_fetch_ipc_userpass(char **username, char **domain, char **password); +TDB_CONTEXT *open_schannel_session_store(TALLOC_CTX *mem_ctx); bool secrets_store_schannel_session_info(TALLOC_CTX *mem_ctx, const char *remote_machine, const struct dcinfo *pdc); diff --git a/source3/passdb/secrets.c b/source3/passdb/secrets.c index b063f07aecc..ee0dcaf42cc 100644 --- a/source3/passdb/secrets.c +++ b/source3/passdb/secrets.c @@ -1133,7 +1133,7 @@ void secrets_fetch_ipc_userpass(char **username, char **domain, char **password) Open or create the schannel session store tdb. *******************************************************************************/ -static TDB_CONTEXT *open_schannel_session_store(TALLOC_CTX *mem_ctx) +TDB_CONTEXT *open_schannel_session_store(TALLOC_CTX *mem_ctx) { TDB_DATA vers; uint32 ver; -- 2.11.4.GIT