summaryrefslogtreecommitdiff
path: root/source3/include/passdb.h
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2005-02-12 00:51:31 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 10:55:38 -0500
commit6c84ecb55657ae28eb739a72164f6d7251dc627f (patch)
treedee7daed349a0f0b71cba5008c50fa4db294c0a8 /source3/include/passdb.h
parent0f87a9ada358020874206cf65db5c62a0a83ddbb (diff)
downloadsamba-6c84ecb55657ae28eb739a72164f6d7251dc627f.tar.gz
samba-6c84ecb55657ae28eb739a72164f6d7251dc627f.tar.bz2
samba-6c84ecb55657ae28eb739a72164f6d7251dc627f.zip
r5349: After talking with Jerry, reverted the addition of account policies to
passdb in 3_0 (they are still in trunk). Guenther (This used to be commit fdf9bdbbac1d8d4f3b3e1fc7e49c1e659b9301b1)
Diffstat (limited to 'source3/include/passdb.h')
-rw-r--r--source3/include/passdb.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/source3/include/passdb.h b/source3/include/passdb.h
index eed3be1ff9..42f38e5b6a 100644
--- a/source3/include/passdb.h
+++ b/source3/include/passdb.h
@@ -334,12 +334,6 @@ typedef struct pdb_context
DOM_SID **aliases,
int *num_aliases);
- NTSTATUS (*pdb_get_account_policy)(struct pdb_context *context,
- int policy_index, int *value);
-
- NTSTATUS (*pdb_set_account_policy)(struct pdb_context *context,
- int policy_index, int value);
-
void (*free_fn)(struct pdb_context **);
TALLOC_CTX *mem_ctx;
@@ -431,12 +425,6 @@ typedef struct pdb_methods
int num_members,
DOM_SID **aliases, int *num);
- NTSTATUS (*get_account_policy)(struct pdb_methods *methods,
- int policy_index, int *value);
-
- NTSTATUS (*set_account_policy)(struct pdb_methods *methods,
- int policy_index, int value);
-
void *private_data; /* Private data of some kind */
void (*free_private_data)(void **);