summaryrefslogtreecommitdiff
path: root/source3/lib/netapi/user.c
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-08-27 11:49:55 +0200
committerGünther Deschner <gd@samba.org>2008-08-29 13:57:58 +0200
commit3967936a4b38252ee9821608da637bb309479201 (patch)
tree24cb2b05fdfa9f9f2e71c2d7b994d1dcb9024e15 /source3/lib/netapi/user.c
parentf7f6c2529b0f37edf64fe33290b9f71ebec399ff (diff)
downloadsamba-3967936a4b38252ee9821608da637bb309479201.tar.gz
samba-3967936a4b38252ee9821608da637bb309479201.tar.bz2
samba-3967936a4b38252ee9821608da637bb309479201.zip
netapi: add skeleton for NetUserGetGroups.
Guenther (This used to be commit a21ec57b2887012777f9580959a37cd23a412029)
Diffstat (limited to 'source3/lib/netapi/user.c')
-rw-r--r--source3/lib/netapi/user.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/source3/lib/netapi/user.c b/source3/lib/netapi/user.c
index dba7542235..78a95fd10b 100644
--- a/source3/lib/netapi/user.c
+++ b/source3/lib/netapi/user.c
@@ -2354,3 +2354,21 @@ WERROR NetUserModalsSet_l(struct libnetapi_ctx *ctx,
{
LIBNETAPI_REDIRECT_TO_LOCALHOST(ctx, r, NetUserModalsSet);
}
+
+/****************************************************************
+****************************************************************/
+
+WERROR NetUserGetGroups_r(struct libnetapi_ctx *ctx,
+ struct NetUserGetGroups *r)
+{
+ return WERR_NOT_SUPPORTED;
+}
+
+/****************************************************************
+****************************************************************/
+
+WERROR NetUserGetGroups_l(struct libnetapi_ctx *ctx,
+ struct NetUserGetGroups *r)
+{
+ LIBNETAPI_REDIRECT_TO_LOCALHOST(ctx, r, NetUserGetGroups);
+}