The branch, master has been updated via 6737231 ldb:ldb_dn.c - fix counter type in "ldb_dn_minimise" from 70b4c08 s3:vfs aio_fork children do not go away
http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master - Log ----------------------------------------------------------------- commit 6737231d9014bfac7449a8f683c1a72d2c9329ef Author: Matthias Dieter Wallnöfer <m...@samba.org> Date: Fri Jan 14 09:38:41 2011 +0100 ldb:ldb_dn.c - fix counter type in "ldb_dn_minimise" Autobuild-User: Matthias Dieter Wallnöfer <m...@samba.org> Autobuild-Date: Fri Jan 14 10:43:29 CET 2011 on sn-devel-104 ----------------------------------------------------------------------- Summary of changes: source4/lib/ldb/common/ldb_dn.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) Changeset truncated at 500 lines: diff --git a/source4/lib/ldb/common/ldb_dn.c b/source4/lib/ldb/common/ldb_dn.c index d5442e4..cd9055d 100644 --- a/source4/lib/ldb/common/ldb_dn.c +++ b/source4/lib/ldb/common/ldb_dn.c @@ -2056,7 +2056,7 @@ int ldb_dn_update_components(struct ldb_dn *dn, const struct ldb_dn *ref_dn) */ bool ldb_dn_minimise(struct ldb_dn *dn) { - int i; + unsigned int i; if (!ldb_dn_validate(dn)) { return false; -- Samba Shared Repository