s3-passdb: fix the build of example pdb test module.
authorGünther Deschner <gd@samba.org>
Mon, 17 Oct 2011 14:08:04 +0000 (16:08 +0200)
committerGünther Deschner <gd@samba.org>
Mon, 17 Oct 2011 14:08:04 +0000 (16:08 +0200)
Guenther

examples/pdb/test.c

index 568b448d28fd60fc7f0558c3f9d534b84497ff03..fb7806f951a7e70d8a6db038d6ca3aca67d87bc5 100644 (file)
 
 
 #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;