diff options
author | Tim Potter <tpot@samba.org> | 2003-10-31 03:02:31 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-10-31 03:02:31 +0000 |
commit | 088820404b6eca6e0bc3c70547757aa57e65239c (patch) | |
tree | f6edca1f177bccc204a4de2c8cd0d0d952196cc2 | |
parent | 3c8ecd3af100db81550ed75256350e2e4c66729f (diff) | |
download | samba-088820404b6eca6e0bc3c70547757aa57e65239c.tar.gz samba-088820404b6eca6e0bc3c70547757aa57e65239c.tar.bz2 samba-088820404b6eca6e0bc3c70547757aa57e65239c.zip |
Whitespace syncup with 3.0
(This used to be commit 9746ef376d2a52ef6ef6b84421d6b7e988a6ca13)
-rw-r--r-- | source3/include/passdb.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/source3/include/passdb.h b/source3/include/passdb.h index cd9c57a991..8d40bbfd26 100644 --- a/source3/include/passdb.h +++ b/source3/include/passdb.h @@ -201,24 +201,24 @@ typedef struct pdb_context { struct pdb_methods *pdb_methods; struct pdb_methods *pwent_methods; - + /* These functions are wrappers for the functions listed above. They may do extra things like re-reading a SAM_ACCOUNT on update */ NTSTATUS (*pdb_setsampwent)(struct pdb_context *, BOOL update); - + void (*pdb_endsampwent)(struct pdb_context *); - + NTSTATUS (*pdb_getsampwent)(struct pdb_context *, SAM_ACCOUNT *user); - + 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); - + NTSTATUS (*pdb_delete_sam_account)(struct pdb_context *, SAM_ACCOUNT *username); /* group mapping functions: to be removed */ |