diff options
author | Andrew Bartlett <abartlet@samba.org> | 2002-05-24 03:37:56 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2002-05-24 03:37:56 +0000 |
commit | b270d2d3ababe0b84e3e7f05573bf673082ba6b8 (patch) | |
tree | fa4302197c4fa3df26a08ea59d6f35d091126352 | |
parent | 222f4d90762b177551f11dba5e51761099c64edf (diff) | |
download | samba-b270d2d3ababe0b84e3e7f05573bf673082ba6b8.tar.gz samba-b270d2d3ababe0b84e3e7f05573bf673082ba6b8.tar.bz2 samba-b270d2d3ababe0b84e3e7f05573bf673082ba6b8.zip |
Don't duplicat this here, use the existing function prototype.
(This used to be commit 18c6db6a0014fd23383361485ec03eb871a85faa)
-rw-r--r-- | source3/include/passdb.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/source3/include/passdb.h b/source3/include/passdb.h index fb020db3e4..e7f16bad57 100644 --- a/source3/include/passdb.h +++ b/source3/include/passdb.h @@ -94,10 +94,8 @@ typedef NTSTATUS (*pdb_init_function)(struct pdb_context *, struct pdb_init_function_entry { char *name; - /* Function to create a member of the authmethods list */ - NTSTATUS (*init)(struct pdb_context *pdb_context, - struct pdb_methods **pdb_method, - const char *location); + /* Function to create a member of the pdb_methods list */ + pdb_init_function init; }; #endif /* _PASSDB_H */ |