summaryrefslogtreecommitdiff
path: root/source3/lib/netapi/libnetapi.c
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-04-09 13:35:49 +0200
committerGünther Deschner <gd@samba.org>2008-04-09 13:35:49 +0200
commitfb538ad641842b69e83709cc7588cbef80d6544b (patch)
tree2ca9e50982c4d28d49d3a0df5e8bd23e1b0e993a /source3/lib/netapi/libnetapi.c
parenteac830c48e260711359a3c5007f2545696733b94 (diff)
downloadsamba-fb538ad641842b69e83709cc7588cbef80d6544b.tar.gz
samba-fb538ad641842b69e83709cc7588cbef80d6544b.tar.bz2
samba-fb538ad641842b69e83709cc7588cbef80d6544b.zip
Add NetUserDel to libnetapi.
Guenther (This used to be commit 92ba18fcd0816fb85846c6e788ea4a04c71e02a8)
Diffstat (limited to 'source3/lib/netapi/libnetapi.c')
-rw-r--r--source3/lib/netapi/libnetapi.c42
1 files changed, 42 insertions, 0 deletions
diff --git a/source3/lib/netapi/libnetapi.c b/source3/lib/netapi/libnetapi.c
index 9d92dac39f..7fd1e76ebd 100644
--- a/source3/lib/netapi/libnetapi.c
+++ b/source3/lib/netapi/libnetapi.c
@@ -487,3 +487,45 @@ NET_API_STATUS NetUserAdd(const char * server_name /* [in] [unique] */,
return r.out.result;
}
+/****************************************************************
+ NetUserDel
+****************************************************************/
+
+NET_API_STATUS NetUserDel(const char * server_name /* [in] [unique] */,
+ const char * user_name /* [in] [ref] */)
+{
+ struct NetUserDel 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.user_name = user_name;
+
+ /* Out parameters */
+
+ if (DEBUGLEVEL >= 10) {
+ NDR_PRINT_IN_DEBUG(NetUserDel, &r);
+ }
+
+ if (LIBNETAPI_LOCAL_SERVER(server_name)) {
+ werr = NetUserDel_l(ctx, &r);
+ } else {
+ werr = NetUserDel_r(ctx, &r);
+ }
+
+ r.out.result = W_ERROR_V(werr);
+
+ if (DEBUGLEVEL >= 10) {
+ NDR_PRINT_OUT_DEBUG(NetUserDel, &r);
+ }
+
+ return r.out.result;
+}
+