X-Git-Url: http://git.samba.org/?p=samba.git;a=blobdiff_plain;f=examples%2Fpdb%2Ftest.c;fp=examples%2Fpdb%2Ftest.c;h=fb7806f951a7e70d8a6db038d6ca3aca67d87bc5;hp=568b448d28fd60fc7f0558c3f9d534b84497ff03;hb=bc536d4893678eec2a3fbba40fb133a24761992a;hpb=234f06eae1a05a232ec1d09250badd6706b8beb2 diff --git a/examples/pdb/test.c b/examples/pdb/test.c index 568b448d28f..fb7806f951a 100644 --- a/examples/pdb/test.c +++ b/examples/pdb/test.c @@ -18,41 +18,13 @@ #include "includes.h" +#include "passdb.h" static int testsam_debug_level = DBGC_ALL; #undef DBGC_CLASS #define DBGC_CLASS testsam_debug_level -/*************************************************************** - Start enumeration of the passwd list. -****************************************************************/ - -static NTSTATUS testsam_setsampwent(struct pdb_methods *methods, BOOL update, uint32 acb_mask) -{ - DEBUG(10, ("testsam_setsampwent called\n")); - return NT_STATUS_NOT_IMPLEMENTED; -} - -/*************************************************************** - End enumeration of the passwd list. -****************************************************************/ - -static void testsam_endsampwent(struct pdb_methods *methods) -{ - DEBUG(10, ("testsam_endsampwent called\n")); -} - -/***************************************************************** - Get one struct samu from the list (next in line) -*****************************************************************/ - -static NTSTATUS testsam_getsampwent(struct pdb_methods *methods, struct samu *user) -{ - DEBUG(10, ("testsam_getsampwent called\n")); - return NT_STATUS_NOT_IMPLEMENTED; -} - /****************************************************************** Lookup a name in the SAM database ******************************************************************/ @@ -116,9 +88,6 @@ NTSTATUS testsam_init(struct pdb_methods **pdb_method, const char *location) /* Functions your pdb module doesn't provide should not be set, make_pdb_methods() already provide suitable defaults for missing functions */ - (*pdb_method)->setsampwent = testsam_setsampwent; - (*pdb_method)->endsampwent = testsam_endsampwent; - (*pdb_method)->getsampwent = testsam_getsampwent; (*pdb_method)->getsampwnam = testsam_getsampwnam; (*pdb_method)->getsampwsid = testsam_getsampwsid; (*pdb_method)->add_sam_account = testsam_add_sam_account;