From: Günther Deschner Date: Wed, 28 May 2008 23:44:21 +0000 (+0200) Subject: netapi: let NetGroupAdd_l and NetGroupDel_l call the remote functions. X-Git-Tag: samba-4.0.0alpha6~801^2~1236 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=903c418b5aac90bc2c2375895e8191ecf51bc0d7;p=thirdparty%2Fsamba.git netapi: let NetGroupAdd_l and NetGroupDel_l call the remote functions. Guenther (This used to be commit d62eae5705e001ed7e39832b52ae139c19549ab8) --- diff --git a/source3/lib/netapi/group.c b/source3/lib/netapi/group.c index fe75880d1af..b47e099ce6e 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); }