summaryrefslogtreecommitdiff
path: root/source3/lib/netapi/share.c
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-09-04 20:03:14 +0200
committerGünther Deschner <gd@samba.org>2008-09-05 13:22:14 +0200
commit582a48d89ce5e9650e6a5b293c06b2294cac0841 (patch)
treeb6532f87037c8c8754cd6ecc254ae4c726ba3f78 /source3/lib/netapi/share.c
parentf97cb336fcc8a20e559b732d7fef0f0c40a165c1 (diff)
downloadsamba-582a48d89ce5e9650e6a5b293c06b2294cac0841.tar.gz
samba-582a48d89ce5e9650e6a5b293c06b2294cac0841.tar.bz2
samba-582a48d89ce5e9650e6a5b293c06b2294cac0841.zip
netapi: add skeleton for NetShareSetInfo.
Guenther (This used to be commit 4d7947e54959c6a445e8b0f7a8313fe232c1fb8f)
Diffstat (limited to 'source3/lib/netapi/share.c')
-rw-r--r--source3/lib/netapi/share.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/source3/lib/netapi/share.c b/source3/lib/netapi/share.c
index 1b3cd4abc8..36f8133f7d 100644
--- a/source3/lib/netapi/share.c
+++ b/source3/lib/netapi/share.c
@@ -461,3 +461,21 @@ WERROR NetShareGetInfo_l(struct libnetapi_ctx *ctx,
{
LIBNETAPI_REDIRECT_TO_LOCALHOST(ctx, r, NetShareGetInfo);
}
+
+/****************************************************************
+****************************************************************/
+
+WERROR NetShareSetInfo_r(struct libnetapi_ctx *ctx,
+ struct NetShareSetInfo *r)
+{
+ return WERR_NOT_SUPPORTED;
+}
+
+/****************************************************************
+****************************************************************/
+
+WERROR NetShareSetInfo_l(struct libnetapi_ctx *ctx,
+ struct NetShareSetInfo *r)
+{
+ LIBNETAPI_REDIRECT_TO_LOCALHOST(ctx, r, NetShareSetInfo);
+}