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