summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNalin Dahyabhai <nalin@dahyabhai.net>2013-12-16 13:23:32 -0500
committerNalin Dahyabhai <nalin@dahyabhai.net>2013-12-16 13:23:32 -0500
commit76482cb6a3ad2c2a408c1e41f08edb768185216a (patch)
treecbd0544d7e53fe44ba622dbebab8419c60abb374
parentda661ba56130fa33118d50dcda086853275898a8 (diff)
downloadslapi-nis-76482cb6a3ad2c2a408c1e41f08edb768185216a.tar.gz
slapi-nis-76482cb6a3ad2c2a408c1e41f08edb768185216a.tar.xz
slapi-nis-76482cb6a3ad2c2a408c1e41f08edb768185216a.zip
tag 0.52
-rw-r--r--NEWS4
-rw-r--r--configure.ac2
-rw-r--r--slapi-nis.spec8
3 files changed, 12 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 369d0c2..9560194 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,7 @@
+0.52 * Properly note in the nsslapd-pluginVersion attribute whether or
+ not transaction support is available.
+ * Fix a pair of incorrect memcpy()-instead-of-memmove() cases which
+ would hit us when removing maps or groups of maps (#1043546).
0.51 * Miscellaneous fixes for bugs found during static analysis.
* Fix another memory leak parsing request arguments, this time
in yp_all, which is exercised by ypcat.
diff --git a/configure.ac b/configure.ac
index 60857de..3771d2d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT(slapi-nis,0.51)
+AC_INIT(slapi-nis,0.52)
AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE(foreign)
LT_INIT([disable-static])
diff --git a/slapi-nis.spec b/slapi-nis.spec
index 2902f0f..e234e38 100644
--- a/slapi-nis.spec
+++ b/slapi-nis.spec
@@ -10,7 +10,7 @@
%endif
Name: slapi-nis
-Version: 0.51
+Version: 0.52
Release: 1%{?dist}
Summary: NIS Server and Schema Compatibility plugins for Directory Server
Group: System Environment/Daemons
@@ -85,6 +85,12 @@ rm -rf $RPM_BUILD_ROOT
%{_sbindir}/nisserver-plugin-defs
%changelog
+* Mon Dec 16 2013 Nalin Dahyabhai <nalin@redhat.com> - 0.52-1
+- correctly reflect whether or not we're built with transaction support in
+ the module's nsslapd-pluginVersion attribute
+- fix a couple of should've-used-memmove()-instead-of-memcpy() cases which
+ would hit when removing maps or groups of maps (#1043546)
+
* Mon Dec 9 2013 Nalin Dahyabhai <nalin@redhat.com> - 0.51-1
- fix another request argument memory leak in NIS server
- fix miscellaneous items found by static analysis