add a comma

This commit is contained in:
Matthias Clasen 2008-08-29 00:59:47 +00:00
parent 8d1d34951f
commit a94c1a9d28
2 changed files with 19 additions and 1 deletions

View File

@ -1,7 +1,7 @@
Summary: Backends for the gio framework in GLib
Name: gvfs
Version: 0.99.5
Release: 2%{?dist}
Release: 3%{?dist}
License: LGPLv2+
Group: System Environment/Libraries
URL: http://www.gtk.org
@ -29,6 +29,8 @@ Requires(postun): desktop-file-utils
BuildRequires: automake autoconf
BuildRequires: libtool
Patch1: gvfs-0.99.2-archive-integration.patch
# fixed upstream
Patch2: missing-comma-of-doom.patch
%description
The gvfs package provides backend implementations for the gio
@ -110,6 +112,7 @@ media players (Media Transfer Protocol) to applications using gvfs.
%prep
%setup -q
%patch1 -p0 -b .archive-integration
%patch2 -p1 -b .missing-comma-of-doom
%build
@ -247,6 +250,9 @@ update-desktop-database &> /dev/null ||:
%changelog
* Thu Aug 28 2008 Matthias Clasen <mclasen@redhat.com> - 0.99.5-3
- Add a comma
* Wed Aug 27 2008 - Bastien Nocera <bnocera@redhat.com> - 0.99.5-2
- Update some descriptions

View File

@ -0,0 +1,12 @@
diff -up gvfs-0.99.4/monitor/proxy/gvfsproxyvolumemonitordaemon.c.missing-comma-of-doom gvfs-0.99.4/monitor/proxy/gvfsproxyvolumemonitordaemon.c
--- gvfs-0.99.4/monitor/proxy/gvfsproxyvolumemonitordaemon.c.missing-comma-of-doom 2008-08-28 20:56:23.000000000 -0400
+++ gvfs-0.99.4/monitor/proxy/gvfsproxyvolumemonitordaemon.c 2008-08-28 20:56:37.000000000 -0400
@@ -598,7 +598,7 @@ handle_volume_mount (DBusConnection *con
dbus_error_init (&dbus_error);
if (!dbus_message_get_args (message, &dbus_error,
DBUS_TYPE_STRING, &id,
- DBUS_TYPE_UINT32 &mount_flags,
+ DBUS_TYPE_UINT32, &mount_flags,
DBUS_TYPE_BOOLEAN, &use_mount_operation,
DBUS_TYPE_INVALID))
{