1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-09 08:58:35 +03:00

r15941: We don't use call levels, at the moment. Remove them until we do.

rafal
(This used to be commit 592387a769521d221a89d374ef72c6123160cfed)
This commit is contained in:
Rafal Szczesniak 2006-05-29 22:01:31 +00:00 committed by Gerald (Jerry) Carter
parent f40a2e9786
commit 787d67c2cd

View File

@ -50,7 +50,6 @@ static int net_user_add(struct net_context *ctx, int argc, const char **argv)
lnet_ctx->cred = ctx->credentials;
/* calling CreateUser function */
r.level = LIBNET_CREATE_USER_GENERIC;
r.in.user_name = user_name;
r.in.domain_name = cli_credentials_get_domain(lnet_ctx->cred);
@ -91,7 +90,6 @@ static int net_user_delete(struct net_context *ctx, int argc, const char **argv)
lnet_ctx->cred = ctx->credentials;
/* calling DeleteUser function */
r.level = LIBNET_DELETE_USER_GENERIC;
r.in.user_name = user_name;
r.in.domain_name = cli_credentials_get_domain(lnet_ctx->cred);