summaryrefslogtreecommitdiffstats
path: root/source/include/passdb.h
diff options
context:
space:
mode:
authorSimo Sorce <idra@samba.org>2002-03-19 13:57:53 +0000
committerSimo Sorce <idra@samba.org>2002-03-19 13:57:53 +0000
commitaa4b6f8181f34196a28951264dd8b631a5deef7f (patch)
treeda75bf4ea13f4700c6e79d1c1c072586d83f2540 /source/include/passdb.h
parent8bf487ddff240150d7a92aaa0f978dd30062c331 (diff)
downloadsamba-aa4b6f8181f34196a28951264dd8b631a5deef7f.tar.gz
samba-aa4b6f8181f34196a28951264dd8b631a5deef7f.tar.xz
samba-aa4b6f8181f34196a28951264dd8b631a5deef7f.zip
second step to gain free uid<->rid mapping
we still need to free gid<->rid mapping and few other stuff
Diffstat (limited to 'source/include/passdb.h')
-rw-r--r--source/include/passdb.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/source/include/passdb.h b/source/include/passdb.h
index df44dce80cf..f17b043fb27 100644
--- a/source/include/passdb.h
+++ b/source/include/passdb.h
@@ -50,10 +50,6 @@ typedef struct pdb_context
BOOL (*pdb_delete_sam_account)(struct pdb_context *, SAM_ACCOUNT *username);
- uid_t (*pdb_user_rid_to_uid)(struct pdb_context *, uint32 user_rid);
-
- uint32 (*pdb_uid_to_user_rid)(struct pdb_context *, uid_t uid);
-
void (*free_fn)(struct pdb_context **);
TALLOC_CTX *mem_ctx;
@@ -79,10 +75,6 @@ typedef struct pdb_methods
BOOL (*update_sam_account)(struct pdb_context *, const SAM_ACCOUNT *sampass);
BOOL (*delete_sam_account)(struct pdb_context *, const SAM_ACCOUNT *username);
-
- uid_t (*user_rid_to_uid)(struct pdb_context *, uint32 user_rid);
-
- uint32 (*uid_to_user_rid)(struct pdb_context *, uid_t uid);
void *private_data; /* Private data of some kind */