mirror of
https://github.com/samba-team/samba.git
synced 2025-08-05 12:22:11 +03:00
netapi: Add dummy implementation of NetGroupSetInfo().
Guenther
(This used to be commit 7e47bdc082
)
This commit is contained in:
@ -725,3 +725,51 @@ NET_API_STATUS NetGroupDel(const char * server_name /* [in] */,
|
||||
return r.out.result;
|
||||
}
|
||||
|
||||
/****************************************************************
|
||||
NetGroupSetInfo
|
||||
****************************************************************/
|
||||
|
||||
NET_API_STATUS NetGroupSetInfo(const char * server_name /* [in] */,
|
||||
const char * group_name /* [in] */,
|
||||
uint32_t level /* [in] */,
|
||||
uint8_t *buf /* [in] [ref] */,
|
||||
uint32_t *parm_err /* [out] [ref] */)
|
||||
{
|
||||
struct NetGroupSetInfo r;
|
||||
struct libnetapi_ctx *ctx = NULL;
|
||||
NET_API_STATUS status;
|
||||
WERROR werr;
|
||||
|
||||
status = libnetapi_getctx(&ctx);
|
||||
if (status != 0) {
|
||||
return status;
|
||||
}
|
||||
|
||||
/* In parameters */
|
||||
r.in.server_name = server_name;
|
||||
r.in.group_name = group_name;
|
||||
r.in.level = level;
|
||||
r.in.buf = buf;
|
||||
|
||||
/* Out parameters */
|
||||
r.out.parm_err = parm_err;
|
||||
|
||||
if (DEBUGLEVEL >= 10) {
|
||||
NDR_PRINT_IN_DEBUG(NetGroupSetInfo, &r);
|
||||
}
|
||||
|
||||
if (LIBNETAPI_LOCAL_SERVER(server_name)) {
|
||||
werr = NetGroupSetInfo_l(ctx, &r);
|
||||
} else {
|
||||
werr = NetGroupSetInfo_r(ctx, &r);
|
||||
}
|
||||
|
||||
r.out.result = W_ERROR_V(werr);
|
||||
|
||||
if (DEBUGLEVEL >= 10) {
|
||||
NDR_PRINT_OUT_DEBUG(NetGroupSetInfo, &r);
|
||||
}
|
||||
|
||||
return r.out.result;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user