summaryrefslogtreecommitdiff
path: root/source3/lib/smbconf/smbconf_reg.c
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-03-21 16:35:52 +0100
committerMichael Adam <obnox@samba.org>2008-03-21 16:35:52 +0100
commit44dc10d808474e669f86337fff73738f97110a0f (patch)
tree6f21177a19b9c6d0482e244fda7b35ecded0393b /source3/lib/smbconf/smbconf_reg.c
parent890d1d8f78e27493c95103b828e3536e4565b344 (diff)
downloadsamba-44dc10d808474e669f86337fff73738f97110a0f.tar.gz
samba-44dc10d808474e669f86337fff73738f97110a0f.tar.bz2
samba-44dc10d808474e669f86337fff73738f97110a0f.zip
libsmbconf: add a comment.
Michael (This used to be commit 8974b283683799bc51223d27b7e6aecac741fbc2)
Diffstat (limited to 'source3/lib/smbconf/smbconf_reg.c')
-rw-r--r--source3/lib/smbconf/smbconf_reg.c6
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);
}
-