summaryrefslogtreecommitdiff
path: root/source3/lib/netapi/user.c
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-09-05 16:51:55 +0200
committerGünther Deschner <gd@samba.org>2008-09-11 14:28:46 +0200
commitcbcebf0f08395737b4d8fa8b7d1bcdc4384467d9 (patch)
tree33259691f9175a4f8b15978baf7c99fafdf884e2 /source3/lib/netapi/user.c
parentf2a987bced1c8e0d4ab2110d0918911c48d0708a (diff)
downloadsamba-cbcebf0f08395737b4d8fa8b7d1bcdc4384467d9.tar.gz
samba-cbcebf0f08395737b4d8fa8b7d1bcdc4384467d9.tar.bz2
samba-cbcebf0f08395737b4d8fa8b7d1bcdc4384467d9.zip
netapi: add skeleton for NetUserSetGroups.
Guenther (This used to be commit 165be948fab1c64526421b44b08de700849bba25)
Diffstat (limited to 'source3/lib/netapi/user.c')
-rw-r--r--source3/lib/netapi/user.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/source3/lib/netapi/user.c b/source3/lib/netapi/user.c
index 4fe0aa04ab..bf3397b4eb 100644
--- a/source3/lib/netapi/user.c
+++ b/source3/lib/netapi/user.c
@@ -2923,3 +2923,22 @@ WERROR NetUserGetGroups_l(struct libnetapi_ctx *ctx,
{
LIBNETAPI_REDIRECT_TO_LOCALHOST(ctx, r, NetUserGetGroups);
}
+
+/****************************************************************
+****************************************************************/
+
+
+WERROR NetUserSetGroups_r(struct libnetapi_ctx *ctx,
+ struct NetUserSetGroups *r)
+{
+ return WERR_NOT_SUPPORTED;
+}
+
+/****************************************************************
+****************************************************************/
+
+WERROR NetUserSetGroups_l(struct libnetapi_ctx *ctx,
+ struct NetUserSetGroups *r)
+{
+ LIBNETAPI_REDIRECT_TO_LOCALHOST(ctx, r, NetUserSetGroups);
+}