summaryrefslogtreecommitdiffstats
path: root/source4/param/share.c
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2007-04-18 01:17:30 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:51:03 -0500
commitf40244af7bb858ade15180c439e965741f4a4dad (patch)
tree2b86d162ae61a703df0250f5fd9eb6bd908db78f /source4/param/share.c
parent21379ee620547820b36094b5424f54afc55b5a07 (diff)
downloadsamba-f40244af7bb858ade15180c439e965741f4a4dad.tar.gz
samba-f40244af7bb858ade15180c439e965741f4a4dad.tar.xz
samba-f40244af7bb858ade15180c439e965741f4a4dad.zip
r22328: Add initial testsuite for share code.
(This used to be commit 3d079732a9cf15fcc3638db5f77bb45d7580d251)
Diffstat (limited to 'source4/param/share.c')
-rw-r--r--source4/param/share.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/source4/param/share.c b/source4/param/share.c
index 7cbaa8a85cd..75b63cef735 100644
--- a/source4/param/share.c
+++ b/source4/param/share.c
@@ -131,11 +131,13 @@ NTSTATUS share_register(const struct share_ops *ops)
return NT_STATUS_OK;
}
-NTSTATUS share_get_context(TALLOC_CTX *mem_ctx, struct share_context **ctx)
+NTSTATUS share_get_context_by_name(TALLOC_CTX *mem_ctx,
+ const char *backend_name,
+ struct share_context **ctx)
{
const struct share_ops *ops;
- ops = share_backend_by_name(lp_share_backend());
+ ops = share_backend_by_name(backend_name);
if (!ops) {
DEBUG(0, ("share_init_connection: share backend [%s] not found!\n", lp_share_backend()));
return NT_STATUS_INTERNAL_ERROR;
@@ -144,6 +146,11 @@ NTSTATUS share_get_context(TALLOC_CTX *mem_ctx, struct share_context **ctx)
return ops->init(mem_ctx, ops, ctx);
}
+NTSTATUS share_get_context(TALLOC_CTX *mem_ctx, struct share_context **ctx)
+{
+ return share_get_context_by_name(mem_ctx, lp_share_backend(), ctx);
+}
+
/*
initialise the SHARE subsystem
*/