Merge remote-tracking branch 'origin/master' into f17

glusterfs-3.3.0-3
This commit is contained in:
Kaleb S. KEITHLEY 2012-07-18 14:43:23 -04:00
parent c7462ecf0a
commit d8b5a4d4f1
2 changed files with 28 additions and 1 deletions

View File

@ -0,0 +1,20 @@
*** cli/src/cli-rpc-ops.c.orig 2012-07-18 13:16:43.720998232 -0400
--- cli/src/cli-rpc-ops.c 2012-07-18 13:19:52.463999495 -0400
***************
*** 5832,5838 ****
if (!time) {
cli_out ("%s", path);
} else {
! tm = localtime ((time_t*)(&time));
strftime (timestr, sizeof (timestr),
"%Y-%m-%d %H:%M:%S", tm);
if (i ==0) {
--- 5832,5839 ----
if (!time) {
cli_out ("%s", path);
} else {
! time_t hack = time;
! tm = localtime (&hack);
strftime (timestr, sizeof (timestr),
"%Y-%m-%d %H:%M:%S", tm);
if (i ==0) {

View File

@ -25,7 +25,7 @@
Summary: Cluster File System
Name: glusterfs
Version: 3.3.0
Release: 2%{?dist}
Release: 3%{?dist}
License: GPLv3+ and (GPLv2 or LGPLv3+)
Group: System Environment/Base
Vendor: Red Hat
@ -39,6 +39,7 @@ Source5: glusterd.logrotate
Source6: glusterfsd.logrotate
Patch0: %{name}-3.3.0.libglusterfs.Makefile.patch
Patch1: %{name}-3.2.5.configure.ac.patch
Patch2: %{name}-3.3.0.cli.cli-rpc-ops.c.patch
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
%if ( 0%{?fedora} && 0%{?fedora} < 17 ) || ( 0%{?rhel} && 0%{?rhel} < 7 )
@ -199,6 +200,7 @@ This package provides the development libraries.
%setup -q -n %{name}-%{version}
%patch0 -p0
%patch1 -p0
%patch2 -p0
%build
./autogen.sh
@ -483,6 +485,11 @@ if [ $1 -ge 1 ]; then
fi
%changelog
=======
* Wed Jul 18 2012 Kaleb S. KEITHLEY <kkeithle[at]redhat.com> - 3.3.0-3
- fix segv in cmd_heal_volume_brick_out (RHEL seems particularly
sensitive to this bug.)
* Thu Jul 5 2012 Kaleb S. KEITHLEY <kkeithle[at]redhat.com> - 3.3.0-2
- selected fixes to glusterfs.spec for BZs 826836, 826855, 829734, 834847