summaryrefslogtreecommitdiff
path: root/source/samrd/srv_samr_usr_tdb.c
diff options
context:
space:
mode:
authorLuke Leighton <lkcl@samba.org>2000-02-16 04:25:29 +0000
committerLuke Leighton <lkcl@samba.org>2000-02-16 04:25:29 +0000
commit206be101053034630bdb10064d4495b0954d41d9 (patch)
treee5e12395bf0664c445629669cb5d5cdb0d34837a /source/samrd/srv_samr_usr_tdb.c
parente9486166d670ec3f618fb560e2f7fc07640699a1 (diff)
downloadsamba-206be101053034630bdb10064d4495b0954d41d9.tar.gz
added stub _samr_delete_dom_user to server-side samr daemons.
Diffstat (limited to 'source/samrd/srv_samr_usr_tdb.c')
-rw-r--r--source/samrd/srv_samr_usr_tdb.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/source/samrd/srv_samr_usr_tdb.c b/source/samrd/srv_samr_usr_tdb.c
index 496125dde04..6ed9cf60c9c 100644
--- a/source/samrd/srv_samr_usr_tdb.c
+++ b/source/samrd/srv_samr_usr_tdb.c
@@ -921,3 +921,11 @@ uint32 _samr_create_user(const POLICY_HND *domain_pol,
user_pol, access_mask, *user_rid);
}
+/*******************************************************************
+ samr_reply_delete_dom_user
+ ********************************************************************/
+uint32 _samr_delete_dom_user(POLICY_HND *user_pol)
+{
+ DEBUG(0,("samr_delete_dom_user: not implemented\n"));
+ return NT_STATUS_ACCESS_DENIED;
+}