1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-03 13:47:25 +03:00

Oops, I missed commiting this earlier.

The idea is that pdb_add_sam_account() should have a non-const SAM_ACCOUNT,
and update some of the the properties generated during the add.

Andrew Bartlett
(This used to be commit b014d9ae4bc38d83d474888b73d350a62704341f)
This commit is contained in:
Andrew Bartlett 2002-05-18 11:38:50 +00:00
parent 55ec09ad95
commit bc8f74f988

View File

@ -76,11 +76,11 @@ typedef struct pdb_methods
BOOL (*getsampwrid)(struct pdb_methods *, SAM_ACCOUNT *sam_acct, uint32 rid);
BOOL (*add_sam_account)(struct pdb_methods *, const SAM_ACCOUNT *sampass);
BOOL (*add_sam_account)(struct pdb_methods *, SAM_ACCOUNT *sampass);
BOOL (*update_sam_account)(struct pdb_methods *, const SAM_ACCOUNT *sampass);
BOOL (*update_sam_account)(struct pdb_methods *, SAM_ACCOUNT *sampass);
BOOL (*delete_sam_account)(struct pdb_methods *, const SAM_ACCOUNT *username);
BOOL (*delete_sam_account)(struct pdb_methods *, SAM_ACCOUNT *username);
void *private_data; /* Private data of some kind */