1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

ldb_sqlite: fix the build

metze
(This used to be commit 14c8e3101c)
This commit is contained in:
Stefan Metzmacher 2008-02-21 15:51:40 +01:00
parent 9f4f496831
commit e36b159e8c
2 changed files with 1 additions and 2 deletions

View File

@ -99,7 +99,6 @@ OBJ_FILES = modules/skel.o
SUBSYSTEM = LIBLDB
CFLAGS = -Ilib/ldb/include
PRIVATE_DEPENDENCIES = LIBTALLOC SQLITE3 LIBTALLOC
INIT_FUNCTION = &ldb_sqlite3_module_ops
OBJ_FILES = \
ldb_sqlite3/ldb_sqlite3.o
# End MODULE ldb_sqlite3

View File

@ -1903,7 +1903,7 @@ failed:
return -1;
}
_PUBLIC_ const struct ldb_backend_ops ldb_sqlite3_backend_ops = {
const struct ldb_backend_ops ldb_sqlite3_backend_ops = {
.name = "sqlite3",
.connect_fn = lsqlite3_connect
};