summaryrefslogtreecommitdiffstats
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
commit9746ef376d2a52ef6ef6b84421d6b7e988a6ca13 (patch)
tree452d231a50589b9c81549ad01d9cc176d3e8c387
parent98881672f5c094181be7988b4d39b451f292e423 (diff)
downloadsamba-9746ef376d2a52ef6ef6b84421d6b7e988a6ca13.tar.gz
samba-9746ef376d2a52ef6ef6b84421d6b7e988a6ca13.tar.xz
samba-9746ef376d2a52ef6ef6b84421d6b7e988a6ca13.zip
Whitespace syncup with 3.0
-rw-r--r--source/include/passdb.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/source/include/passdb.h b/source/include/passdb.h
index cd9c57a991d..8d40bbfd265 100644
--- a/source/include/passdb.h
+++ b/source/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 */