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

Merge branch 'master' of /home/tridge/samba/git/combined

This commit is contained in:
Andrew Tridgell 2009-09-16 03:56:07 -07:00
commit f391e64a82

View File

@ -2311,6 +2311,14 @@ int dsdb_load_partition_usn(struct ldb_context *ldb, struct ldb_dn *dn, uint64_t
ret = ldb_wait(req->handle, LDB_WAIT_ALL); ret = ldb_wait(req->handle, LDB_WAIT_ALL);
} }
if (ret == LDB_ERR_NO_SUCH_OBJECT) {
/* it hasn't been created yet, which means
an implicit value of zero */
*uSN = 0;
talloc_free(tmp_ctx);
return LDB_SUCCESS;
}
if (ret != LDB_SUCCESS) { if (ret != LDB_SUCCESS) {
talloc_free(tmp_ctx); talloc_free(tmp_ctx);
return ret; return ret;