From f7a3bd4fa42eba56675c46d0a2baf0dccded8018 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Thu, 3 Jun 2010 19:05:43 +0200 Subject: tdb: fix the build on mac os x 10.6.4. Guenther --- lib/tdb/common/transaction.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'lib/tdb/common') diff --git a/lib/tdb/common/transaction.c b/lib/tdb/common/transaction.c index 304a03fa38..ebf1cec5f2 100644 --- a/lib/tdb/common/transaction.c +++ b/lib/tdb/common/transaction.c @@ -548,7 +548,11 @@ static int transaction_sync(struct tdb_context *tdb, tdb_off_t offset, tdb_len_t return 0; } +#ifdef HAVE_FDATASYNC if (fdatasync(tdb->fd) != 0) { +#else + if (fsync(tdb->fd) != 0) { +#endif tdb->ecode = TDB_ERR_IO; TDB_LOG((tdb, TDB_DEBUG_FATAL, "tdb_transaction: fsync failed\n")); return -1; -- cgit