summaryrefslogtreecommitdiff
path: root/source3/lib/gencache.c
diff options
context:
space:
mode:
authorRusty Russell <rusty@rustcorp.com.au>2011-06-20 18:40:31 +0930
committerRusty Russell <rusty@rustcorp.com.au>2011-06-20 11:18:35 +0200
commit2b1452b2fc0573e09fedb7fbd8a5f8d278470b9c (patch)
tree74cf934a3e37ba5e811c8ee4709a021b6ea697da /source3/lib/gencache.c
parent6bc59d77b64d1ecbe5c906ed2fa80a7b8ca5d420 (diff)
downloadsamba-2b1452b2fc0573e09fedb7fbd8a5f8d278470b9c.tar.gz
samba-2b1452b2fc0573e09fedb7fbd8a5f8d278470b9c.tar.bz2
samba-2b1452b2fc0573e09fedb7fbd8a5f8d278470b9c.zip
tdb_transaction_commit: check returns for 0, not -1.
TDB2 returns a negative error number on failure. This is compatible if we always check for != 0 instead of == -1. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'source3/lib/gencache.c')
-rw-r--r--source3/lib/gencache.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/lib/gencache.c b/source3/lib/gencache.c
index 5c9c1a296a..62bad96fbb 100644
--- a/source3/lib/gencache.c
+++ b/source3/lib/gencache.c
@@ -461,7 +461,7 @@ bool gencache_stabilize(void)
}
res = tdb_transaction_start_nonblock(cache);
- if (res == -1) {
+ if (res != 0) {
if (tdb_error(cache) == TDB_ERR_NOLOCK) {
/*
@@ -476,7 +476,7 @@ bool gencache_stabilize(void)
return false;
}
res = tdb_transaction_start(cache_notrans);
- if (res == -1) {
+ if (res != 0) {
tdb_transaction_cancel(cache);
DEBUG(10, ("Could not start transaction on "
"gencache_notrans.tdb: %s\n",
@@ -505,7 +505,7 @@ bool gencache_stabilize(void)
}
res = tdb_transaction_commit(cache);
- if (res == -1) {
+ if (res != 0) {
DEBUG(10, ("tdb_transaction_commit on gencache.tdb failed: "
"%s\n", tdb_errorstr(cache)));
if (tdb_transaction_cancel(cache_notrans) == -1) {
@@ -515,7 +515,7 @@ bool gencache_stabilize(void)
}
res = tdb_transaction_commit(cache_notrans);
- if (res == -1) {
+ if (res != 0) {
DEBUG(10, ("tdb_transaction_commit on gencache.tdb failed: "
"%s\n", tdb_errorstr(cache)));
return false;