From 1c7d4e946122fcaef7db4de152e9a88d34eec925 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Fri, 21 Mar 2008 02:01:55 +0100 Subject: [PATCH] libsmbconf: add shutdown handler to smbconf_ops. Michael (cherry picked from commit acbd1f40e0cb4cb5b2ba826c4825edda7ee4937b) --- source/lib/smbconf/smbconf.c | 8 +++++++- source/lib/smbconf/smbconf_private.h | 1 + 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/source/lib/smbconf/smbconf.c b/source/lib/smbconf/smbconf.c index 89fe5585104..82683caa696 100644 --- a/source/lib/smbconf/smbconf.c +++ b/source/lib/smbconf/smbconf.c @@ -395,7 +395,7 @@ done: static int smbconf_destroy_ctx(struct smbconf_ctx *ctx) { - return ctx->ops->close_conf(ctx); + return ctx->ops->shutdown(ctx); } static WERROR smbconf_global_check(struct smbconf_ctx *ctx) @@ -436,6 +436,11 @@ done: return werr; } +static int smbconf_reg_shutdown(struct smbconf_ctx *ctx) +{ + return regdb_close(); +} + static WERROR smbconf_reg_open(struct smbconf_ctx *ctx) { return regdb_open(); @@ -761,6 +766,7 @@ done: struct smbconf_ops smbconf_ops_reg = { .init = smbconf_reg_init, + .shutdown = smbconf_reg_shutdown, .open_conf = smbconf_reg_open, .close_conf = smbconf_reg_close, .get_csn = smbconf_reg_get_csn, diff --git a/source/lib/smbconf/smbconf_private.h b/source/lib/smbconf/smbconf_private.h index a8dc23fefc1..b64da6ca73d 100644 --- a/source/lib/smbconf/smbconf_private.h +++ b/source/lib/smbconf/smbconf_private.h @@ -22,6 +22,7 @@ struct smbconf_ops { WERROR (*init)(struct smbconf_ctx *ctx); + int (*shutdown)(struct smbconf_ctx *ctx); WERROR (*open_conf)(struct smbconf_ctx *ctx); int (*close_conf)(struct smbconf_ctx *ctx); void (*get_csn)(struct smbconf_ctx *ctx, struct smbconf_csn *csn, -- 2.11.4.GIT