summaryrefslogtreecommitdiff
path: root/source3/lib/netapi/group.c
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-05-29 01:44:21 +0200
committerGünther Deschner <gd@samba.org>2008-06-03 01:27:41 +0200
commit903c418b5aac90bc2c2375895e8191ecf51bc0d7 (patch)
tree58164c84ea9475d6a5fa8b9c14afd4c3991ddbf3 /source3/lib/netapi/group.c
parent4e85043e267720a442e43dd6b6ceba378f7aadf4 (diff)
downloadsamba-903c418b5aac90bc2c2375895e8191ecf51bc0d7.tar.gz
samba-903c418b5aac90bc2c2375895e8191ecf51bc0d7.tar.bz2
samba-903c418b5aac90bc2c2375895e8191ecf51bc0d7.zip
netapi: let NetGroupAdd_l and NetGroupDel_l call the remote functions.
Guenther (This used to be commit d62eae5705e001ed7e39832b52ae139c19549ab8)
Diffstat (limited to 'source3/lib/netapi/group.c')
-rw-r--r--source3/lib/netapi/group.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/netapi/group.c b/source3/lib/netapi/group.c
index fe75880d1a..b47e099ce6 100644
--- a/source3/lib/netapi/group.c
+++ b/source3/lib/netapi/group.c
@@ -272,7 +272,7 @@ WERROR NetGroupAdd_r(struct libnetapi_ctx *ctx,
WERROR NetGroupAdd_l(struct libnetapi_ctx *ctx,
struct NetGroupAdd *r)
{
- return WERR_NOT_SUPPORTED;
+ return NetGroupAdd_r(ctx, r);
}
/****************************************************************
@@ -492,5 +492,5 @@ WERROR NetGroupDel_r(struct libnetapi_ctx *ctx,
WERROR NetGroupDel_l(struct libnetapi_ctx *ctx,
struct NetGroupDel *r)
{
- return WERR_NOT_SUPPORTED;
+ return NetGroupDel_r(ctx, r);
}