diff options
-rw-r--r-- | source3/lib/smbconf/smbconf_reg.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/source3/lib/smbconf/smbconf_reg.c b/source3/lib/smbconf/smbconf_reg.c index d260be8552..f0a1f17f8e 100644 --- a/source3/lib/smbconf/smbconf_reg.c +++ b/source3/lib/smbconf/smbconf_reg.c @@ -737,8 +737,12 @@ struct smbconf_ops smbconf_ops_reg = { .delete_parameter = smbconf_reg_delete_parameter }; + +/** + * initialize the smbconf registry backend + * the only function that is exported from this module + */ WERROR smbconf_init_reg(TALLOC_CTX *mem_ctx, struct smbconf_ctx **conf_ctx) { return smbconf_init(mem_ctx, conf_ctx, &smbconf_ops_reg); } - |