summaryrefslogtreecommitdiff
path: root/source3/registry/reg_backend_smbconf.c
diff options
context:
space:
mode:
Diffstat (limited to 'source3/registry/reg_backend_smbconf.c')
-rw-r--r--source3/registry/reg_backend_smbconf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/registry/reg_backend_smbconf.c b/source3/registry/reg_backend_smbconf.c
index e8ac967e44..15993438a9 100644
--- a/source3/registry/reg_backend_smbconf.c
+++ b/source3/registry/reg_backend_smbconf.c
@@ -23,7 +23,7 @@
#undef DBGC_CLASS
#define DBGC_CLASS DBGC_REGISTRY
-extern REGISTRY_OPS regdb_ops; /* these are the default */
+extern struct registry_ops regdb_ops; /* these are the default */
static int smbconf_fetch_keys( const char *key, struct regsubkey_ctr *subkey_ctr )
{
@@ -84,7 +84,7 @@ static WERROR smbconf_set_secdesc(const char *key,
* Table of function pointers for accessing smb.conf data
*/
-REGISTRY_OPS smbconf_reg_ops = {
+struct registry_ops smbconf_reg_ops = {
.fetch_subkeys = smbconf_fetch_keys,
.fetch_values = smbconf_fetch_values,
.store_subkeys = smbconf_store_keys,