- Revise patch for GNOME bug #363695 to fix RH bug #238497 (crash sorting

"To" column).
This commit is contained in:
Matthew Barnes 2007-05-01 15:57:42 +00:00
parent 9c1c3426e2
commit 2e368180bf
2 changed files with 6 additions and 2 deletions

View File

@ -122,7 +122,7 @@
return (void *)(str ? str : "");
case COL_TO_NORM:
- return (void *) get_normalised_string (message_list, msg_info, col);
+ str = camel_message_info_to (str);
+ str = camel_message_info_to (msg_info);
+ return (void *) get_normalised_string (message_list, str);
case COL_SIZE:
return GINT_TO_POINTER (camel_message_info_size(msg_info));

View File

@ -47,7 +47,7 @@
Name: evolution
Version: 2.10.1
Release: 9%{?dist}
Release: 10%{?dist}
License: GPL
Group: Applications/Productivity
Summary: GNOME's next-generation groupware suite
@ -747,6 +747,10 @@ rm -rf $RPM_BUILD_ROOT
%{_libdir}/evolution/%{evo_major}/libmenus.so
%changelog
* Tue May 01 2007 Matthew Barnes <mbarnes@redhat.com> - 2.10.1-10.fc7
- Revise patch for GNOME bug #363695 to fix RH bug #238497
(crash sorting "To" column).
* Mon Apr 30 2007 Matthew Barnes <mbarnes@redhat.com> - 2.10.1-9.fc7
- Revise some patches so that we don't have to run autoreconf.
- Remove patch for GNOME bug #427939 (use a different work-around).