summaryrefslogtreecommitdiff
path: root/examples/pdb
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2003-12-30 21:12:36 +0000
committerVolker Lendecke <vlendec@samba.org>2003-12-30 21:12:36 +0000
commit2abf5f928fc974f0f03443f4bf3b8a8e97738aa1 (patch)
treee8331308f41c50b246f2c139f5bf3fdc1fda2d27 /examples/pdb
parent0ac7dcce6ba47517cd279907071cb50b16b82d16 (diff)
downloadsamba-2abf5f928fc974f0f03443f4bf3b8a8e97738aa1.tar.gz
Another little one: Make pdb_test.c at least compile, although its way out of
date. Volker (This used to be commit 5d7a14166af3daf04b570fd5f66469d5db5a3500)
Diffstat (limited to 'examples/pdb')
-rw-r--r--examples/pdb/Makefile2
-rw-r--r--examples/pdb/pdb_test.c10
2 files changed, 4 insertions, 8 deletions
diff --git a/examples/pdb/Makefile b/examples/pdb/Makefile
index 115fd3c87e7..a53cd5d5e2d 100644
--- a/examples/pdb/Makefile
+++ b/examples/pdb/Makefile
@@ -8,7 +8,7 @@ SAMBA_SRC = ../../source
SAMBA_INCL = ../../source/include
UBIQX_SRC = ../../source/ubiqx
SMBWR_SRC = ../../source/smbwrapper
-CFLAGS = -I$(SAMBA_SRC) -I$(SAMBA_INCL) -I$(UBIQX_SRC) -I$(SMBWR_SRC) -Wall -g
+CFLAGS = -I$(SAMBA_SRC) -I$(SAMBA_INCL) -I$(UBIQX_SRC) -I$(SMBWR_SRC) -Wall -g -I/usr/include/heimdal -fPIC
PDB_OBJS = pdb_test.so
# Default target
diff --git a/examples/pdb/pdb_test.c b/examples/pdb/pdb_test.c
index f5fb57ddb20..e46c621d48e 100644
--- a/examples/pdb/pdb_test.c
+++ b/examples/pdb/pdb_test.c
@@ -139,11 +139,7 @@ NTSTATUS testsam_init(PDB_CONTEXT *pdb_context, PDB_METHODS **pdb_method, const
return NT_STATUS_OK;
}
-int init_module(void);
-
-int init_module() {
- if(smb_register_passdb("testsam", testsam_init, PASSDB_INTERFACE_VERSION))
- return 0;
-
- return 1;
+NTSTATUS init_module(void) {
+ return smb_register_passdb(PASSDB_INTERFACE_VERSION, "testsam",
+ testsam_init);
}