From b270d2d3ababe0b84e3e7f05573bf673082ba6b8 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Fri, 24 May 2002 03:37:56 +0000 Subject: Don't duplicat this here, use the existing function prototype. (This used to be commit 18c6db6a0014fd23383361485ec03eb871a85faa) --- source3/include/passdb.h | 6 ++---- 1 file 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 */ -- cgit