summaryrefslogtreecommitdiff
path: root/source3/lib/netapi/user.c
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-09-09 13:42:27 +0200
committerGünther Deschner <gd@samba.org>2008-09-11 14:30:42 +0200
commit40e9ddd6e422f2fa6d0ffa43dc4c78bef5489b7a (patch)
tree82cb462cad43c8d401b34d547d7e29a640c78eb0 /source3/lib/netapi/user.c
parentf5c2e5890ec704af546bf84404bbd4cad2d7a266 (diff)
downloadsamba-40e9ddd6e422f2fa6d0ffa43dc4c78bef5489b7a.tar.gz
samba-40e9ddd6e422f2fa6d0ffa43dc4c78bef5489b7a.tar.bz2
samba-40e9ddd6e422f2fa6d0ffa43dc4c78bef5489b7a.zip
netapi: add NetUserGetLocalGroups skeleton.
Guenther (This used to be commit b31209e4495de31140c57338a891569b3436d91e)
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 4fbc27f364..80c7c53b37 100644
--- a/source3/lib/netapi/user.c
+++ b/source3/lib/netapi/user.c
@@ -3182,3 +3182,21 @@ WERROR NetUserSetGroups_l(struct libnetapi_ctx *ctx,
{
LIBNETAPI_REDIRECT_TO_LOCALHOST(ctx, r, NetUserSetGroups);
}
+
+/****************************************************************
+****************************************************************/
+
+WERROR NetUserGetLocalGroups_r(struct libnetapi_ctx *ctx,
+ struct NetUserGetLocalGroups *r)
+{
+ return WERR_NOT_SUPPORTED;
+}
+
+/****************************************************************
+****************************************************************/
+
+WERROR NetUserGetLocalGroups_l(struct libnetapi_ctx *ctx,
+ struct NetUserGetLocalGroups *r)
+{
+ LIBNETAPI_REDIRECT_TO_LOCALHOST(ctx, r, NetUserGetLocalGroups);
+}