From be97af0edb085e1e33e3e8fbc97760249a720b52 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Fri, 21 Mar 2008 22:52:27 +0100 Subject: libsmbconf: add private_data section to smbconf_ctx. This private data should be used by backends. The token for the registry backend is moved from the context to the private data section, since this is registry specific. Michael (This used to be commit a02163356bdd0c17a25a45e9904f8bd1e1c4bee4) --- source3/lib/smbconf/smbconf_private.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/lib/smbconf/smbconf_private.h') diff --git a/source3/lib/smbconf/smbconf_private.h b/source3/lib/smbconf/smbconf_private.h index 6250dc7339..e08a2b186a 100644 --- a/source3/lib/smbconf/smbconf_private.h +++ b/source3/lib/smbconf/smbconf_private.h @@ -54,9 +54,9 @@ struct smbconf_ops { }; struct smbconf_ctx { - NT_USER_TOKEN *token; const char *path; struct smbconf_ops *ops; + void *data; /* private data for use in backends */ }; WERROR smbconf_add_string_to_array(TALLOC_CTX *mem_ctx, -- cgit