From 903c418b5aac90bc2c2375895e8191ecf51bc0d7 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Thu, 29 May 2008 01:44:21 +0200 Subject: netapi: let NetGroupAdd_l and NetGroupDel_l call the remote functions. Guenther (This used to be commit d62eae5705e001ed7e39832b52ae139c19549ab8) --- source3/lib/netapi/group.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/lib/netapi/group.c') 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); } -- cgit