diff options
author | Günther Deschner <gd@samba.org> | 2009-05-16 01:22:28 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-05-16 01:27:51 +0200 |
commit | dccecdf33850ec4d763b8b0e7ba7be7a8eb873de (patch) | |
tree | 711c98d654374d95b4b523685689a5c625c7842d /source3/lib | |
parent | 118f343b05ba86a1f8fd28394433aa6e961e2d6c (diff) | |
download | samba-dccecdf33850ec4d763b8b0e7ba7be7a8eb873de.tar.gz samba-dccecdf33850ec4d763b8b0e7ba7be7a8eb873de.tar.bz2 samba-dccecdf33850ec4d763b8b0e7ba7be7a8eb873de.zip |
s3-privileges: add privilege_delete_account().
Guenther
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/privileges.c | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/source3/lib/privileges.c b/source3/lib/privileges.c index b3574da858..c8be360dc6 100644 --- a/source3/lib/privileges.c +++ b/source3/lib/privileges.c @@ -359,6 +359,34 @@ NTSTATUS privilege_create_account(const DOM_SID *sid ) return ( grant_privilege(sid, &se_priv_none) ? NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL); } +/*************************************************************************** + Delete a privileged account +****************************************************************************/ + +NTSTATUS privilege_delete_account(const struct dom_sid *sid) +{ + struct db_context *db = get_account_pol_db(); + fstring tmp, keystr; + + if (!lp_enable_privileges()) { + return NT_STATUS_OK; + } + + if (!db) { + return NT_STATUS_INVALID_HANDLE; + } + + if (!sid || (sid->num_auths == 0)) { + return NT_STATUS_INVALID_SID; + } + + /* PRIV_<SID> (NULL terminated) as the key */ + + fstr_sprintf(keystr, "%s%s", PRIVPREFIX, sid_to_fstring(tmp, sid)); + + return dbwrap_delete_bystring(db, keystr); +} + /**************************************************************************** initialise a privilege list and set the talloc context ****************************************************************************/ |