From 93a2a71efcf49462204252375f868f7211a15d5f Mon Sep 17 00:00:00 2001 From: Peter Vrabec Date: Mon, 10 Oct 2005 12:18:18 +0000 Subject: [PATCH] - fix bug introduced in logrotate 3.7.2-3(#169858) - fix some memory leaks (#169888) --- logrotate.spec | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/logrotate.spec b/logrotate.spec index fad7d9f..ec5fdd4 100644 --- a/logrotate.spec +++ b/logrotate.spec @@ -5,7 +5,7 @@ BuildRequires: libselinux-devel Summary: Rotates, compresses, removes and mails system log files. Name: logrotate Version: 3.7.2 -Release: 4 +Release: 5 License: GPL Group: System Environment/Base Source: logrotate-%{PACKAGE_VERSION}.tar.gz @@ -13,6 +13,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version}.root Patch1: logrotate-3.7.2-yearly.patch Patch2: logrotate-3.7.2-sharedscript.patch Patch3: logrotate-3.7.2-debugCompress.patch +Patch4: logrotate-3.7.2-fixLeaks.patch %description The logrotate utility is designed to simplify the administration of @@ -30,6 +31,7 @@ log files on your system. %patch1 -p1 -b .yearly %patch2 -p1 -b .sharedscript %patch3 -p1 -b .debugCompress +%patch4 -p1 -b .fixLeaks %build make RPM_OPT_FLAGS="$RPM_OPT_FLAGS -g" \ @@ -62,6 +64,10 @@ rm -rf $RPM_BUILD_ROOT %attr(0644, root, root) %verify(not size md5 mtime) %config(noreplace) /var/lib/logrotate.status %changelog +* Mon Oct 10 2005 Peter Vrabec 3.7.2-5 +- fix bug introduced in logrotate 3.7.2-3(#169858) +- fix some memory leaks (#169888) + * Fri Sep 23 2005 Peter Vrabec 3.7.2-4 - do not run compression program in debug mode (#166912)