summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2003-10-31 03:02:31 +0000
committerTim Potter <tpot@samba.org>2003-10-31 03:02:31 +0000
commit088820404b6eca6e0bc3c70547757aa57e65239c (patch)
treef6edca1f177bccc204a4de2c8cd0d0d952196cc2 /source3
parent3c8ecd3af100db81550ed75256350e2e4c66729f (diff)
downloadsamba-088820404b6eca6e0bc3c70547757aa57e65239c.tar.gz
samba-088820404b6eca6e0bc3c70547757aa57e65239c.tar.bz2
samba-088820404b6eca6e0bc3c70547757aa57e65239c.zip
Whitespace syncup with 3.0
(This used to be commit 9746ef376d2a52ef6ef6b84421d6b7e988a6ca13)
Diffstat (limited to 'source3')
-rw-r--r--source3/include/passdb.h14
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 */