support posix winsync - fix server to server ssl client auth - many valgrind and coverity fixes
8e5087a Coverity defects - 13089: Dereference after null check ldbm_back_delete - Trac Ticket #437 - variable dn should not be used in ldbm_back_delete - ba1f5b2 fix coverity resource leak in windows_plugin_add - e3e81db Simplify program flow: change while loops to for - a0d5dc0 Fix logic errors: del_mod should be latched (might not be last mod), and avoid skipping add-mods (int value 0) - 0808f7e Simplify program flow: make adduids/moduids/deluids action blocks all similar - 77eb760 Simplify program flow: eliminate unnecessary continue - c9e9db7 Memory leaks: unmatched slapi_attr_get_valueset and slapi_value_new - a4ca0cc Change "return"s in modGroupMembership to "break"s to avoid leaking - d49035c Factorize into new isPosixGroup function - 3b61c03 coverity - posix winsync mem leaks, null check, deadcode, null ref, use after free - 33ce2a9 fix mem leaks with parent dn log message, setting winsync windows domain - Ticket #440 - periodic dirsync timed event causes server to loop repeatedly - Ticket #355 - winsync should not delete entry that appears to be out of scope - Ticket 436 - nsds5ReplicaEnabled can be set with any invalid values. - 487932d coverity - mbo dead code - winsync leaks, deadcode, null check, test code - 2734a71 CLEANALLRUV coverity fixes - Ticket #426 - support posix schema for user and group sync - Ticket #430 - server to server ssl client auth broken with latest openldap
This commit is contained in:
parent
8506832200
commit
d087c2a501
1
.gitignore
vendored
1
.gitignore
vendored
@ -53,3 +53,4 @@
|
|||||||
/389-ds-base-1.2.11.9.tar.bz2
|
/389-ds-base-1.2.11.9.tar.bz2
|
||||||
/389-ds-base-1.2.11.10.tar.bz2
|
/389-ds-base-1.2.11.10.tar.bz2
|
||||||
/389-ds-base-1.2.11.11.tar.bz2
|
/389-ds-base-1.2.11.11.tar.bz2
|
||||||
|
/389-ds-base-1.2.11.12.tar.bz2
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
DATE=`date +%Y%m%d`
|
DATE=`date +%Y%m%d`
|
||||||
# use a real tag name here
|
# use a real tag name here
|
||||||
VERSION=1.2.11.11
|
VERSION=1.2.11.12
|
||||||
PKGNAME=389-ds-base
|
PKGNAME=389-ds-base
|
||||||
TAG=${TAG:-$PKGNAME-$VERSION}
|
TAG=${TAG:-$PKGNAME-$VERSION}
|
||||||
#SRCNAME=$PKGNAME-$VERSION-$DATE
|
#SRCNAME=$PKGNAME-$VERSION-$DATE
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
DATE=`date +%Y%m%d`
|
DATE=`date +%Y%m%d`
|
||||||
# use a real tag name here
|
# use a real tag name here
|
||||||
VERSION=1.2.11.11
|
VERSION=1.2.11.12
|
||||||
PKGNAME=389-ds-base
|
PKGNAME=389-ds-base
|
||||||
TAG=${TAG:-$PKGNAME-$VERSION}
|
TAG=${TAG:-$PKGNAME-$VERSION}
|
||||||
URL="http://git.fedorahosted.org/git/?p=389/ds.git;a=snapshot;h=$TAG;sf=tgz"
|
URL="http://git.fedorahosted.org/git/?p=389/ds.git;a=snapshot;h=$TAG;sf=tgz"
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
|
|
||||||
Summary: 389 Directory Server (base)
|
Summary: 389 Directory Server (base)
|
||||||
Name: 389-ds-base
|
Name: 389-ds-base
|
||||||
Version: 1.2.11.11
|
Version: 1.2.11.12
|
||||||
Release: %{?relprefix}1%{?prerel}%{?dist}
|
Release: %{?relprefix}1%{?prerel}%{?dist}
|
||||||
License: GPLv2 with exceptions
|
License: GPLv2 with exceptions
|
||||||
URL: http://port389.org/
|
URL: http://port389.org/
|
||||||
@ -311,7 +311,28 @@ fi
|
|||||||
%{_libdir}/%{pkgname}/libslapd.so.*
|
%{_libdir}/%{pkgname}/libslapd.so.*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
*Mon Aug 20 2012 Mark Reynolds <mareynol@redhat.com> - 1.2.11.11-1
|
* Thu Aug 30 2012 Rich Megginson <rmeggins@redhat.com> - 1.2.11.12-1
|
||||||
|
- 8e5087a Coverity defects - 13089: Dereference after null check ldbm_back_delete
|
||||||
|
- Trac Ticket #437 - variable dn should not be used in ldbm_back_delete
|
||||||
|
- ba1f5b2 fix coverity resource leak in windows_plugin_add
|
||||||
|
- e3e81db Simplify program flow: change while loops to for
|
||||||
|
- a0d5dc0 Fix logic errors: del_mod should be latched (might not be last mod), and avoid skipping add-mods (int value 0)
|
||||||
|
- 0808f7e Simplify program flow: make adduids/moduids/deluids action blocks all similar
|
||||||
|
- 77eb760 Simplify program flow: eliminate unnecessary continue
|
||||||
|
- c9e9db7 Memory leaks: unmatched slapi_attr_get_valueset and slapi_value_new
|
||||||
|
- a4ca0cc Change "return"s in modGroupMembership to "break"s to avoid leaking
|
||||||
|
- d49035c Factorize into new isPosixGroup function
|
||||||
|
- 3b61c03 coverity - posix winsync mem leaks, null check, deadcode, null ref, use after free
|
||||||
|
- 33ce2a9 fix mem leaks with parent dn log message, setting winsync windows domain
|
||||||
|
- Ticket #440 - periodic dirsync timed event causes server to loop repeatedly
|
||||||
|
- Ticket #355 - winsync should not delete entry that appears to be out of scope
|
||||||
|
- Ticket 436 - nsds5ReplicaEnabled can be set with any invalid values.
|
||||||
|
- 487932d coverity - mbo dead code - winsync leaks, deadcode, null check, test code
|
||||||
|
- 2734a71 CLEANALLRUV coverity fixes
|
||||||
|
- Ticket #426 - support posix schema for user and group sync
|
||||||
|
- Ticket #430 - server to server ssl client auth broken with latest openldap
|
||||||
|
|
||||||
|
* Mon Aug 20 2012 Mark Reynolds <mareynol@redhat.com> - 1.2.11.11-1
|
||||||
6c0778f bumped version to 1.2.11.11
|
6c0778f bumped version to 1.2.11.11
|
||||||
Ticket 429 - added nsslapd-readonly to DS schema
|
Ticket 429 - added nsslapd-readonly to DS schema
|
||||||
Ticket 403 - fix CLEANALLRUV regression from last commit
|
Ticket 403 - fix CLEANALLRUV regression from last commit
|
||||||
|
Loading…
Reference in New Issue
Block a user