diff options
author | Simo Sorce <idra@samba.org> | 2003-04-29 03:31:00 +0000 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2003-04-29 03:31:00 +0000 |
commit | 67a5f62e43f802149e6d2761b0d9f93a1b084a27 (patch) | |
tree | ec9015cc519923a104fc77504714e338018cdc7d /source3/include/passdb.h | |
parent | e64b34cd47e046e9804b9e7774ee8316e9729413 (diff) | |
download | samba-67a5f62e43f802149e6d2761b0d9f93a1b084a27.tar.gz samba-67a5f62e43f802149e6d2761b0d9f93a1b084a27.tar.bz2 samba-67a5f62e43f802149e6d2761b0d9f93a1b084a27.zip |
ok next_rid out as well local_*id_to*id functions
reverted user making function, did not pass the abartlet test :-)
idmap is now fully integrated, we only miss user creation and removal of uid
and gid from SAM_ACCOUNT
(This used to be commit 67af8c26586c4829166795813a373bf9be27b753)
Diffstat (limited to 'source3/include/passdb.h')
-rw-r--r-- | source3/include/passdb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/include/passdb.h b/source3/include/passdb.h index 06409aa34e..35399758b2 100644 --- a/source3/include/passdb.h +++ b/source3/include/passdb.h @@ -51,7 +51,7 @@ typedef struct pdb_context NTSTATUS (*pdb_getsampwnam)(struct pdb_context *, SAM_ACCOUNT *sam_acct, const char *username); NTSTATUS (*pdb_getsampwsid)(struct pdb_context *, SAM_ACCOUNT *sam_acct, const DOM_SID *sid); - + NTSTATUS (*pdb_add_sam_account)(struct pdb_context *, SAM_ACCOUNT *sampass); NTSTATUS (*pdb_update_sam_account)(struct pdb_context *, SAM_ACCOUNT *sampass); @@ -104,7 +104,7 @@ typedef struct pdb_methods NTSTATUS (*getsampwnam)(struct pdb_methods *, SAM_ACCOUNT *sam_acct, const char *username); - NTSTATUS (*getsampwsid)(struct pdb_methods *, SAM_ACCOUNT *sam_acct, const DOM_SID *Sid); + NTSTATUS (*getsampwsid)(struct pdb_methods *, SAM_ACCOUNT *sam_acct, const DOM_SID *sid); NTSTATUS (*add_sam_account)(struct pdb_methods *, SAM_ACCOUNT *sampass); |