Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 854335 Details for
Bug 1011835
An error is displayed when renaming directory or file on WebDAV location [gvfs webdav backend]
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
gvfs-mount_prefix-async_patch_call
gvfs-mount_prefix-async_patch_call.patch (text/plain), 6.74 KB, created by
Jarek Polok
on 2014-01-23 12:10:53 UTC
(
hide
)
Description:
gvfs-mount_prefix-async_patch_call
Filename:
MIME Type:
Creator:
Jarek Polok
Created:
2014-01-23 12:10:53 UTC
Size:
6.74 KB
patch
obsolete
>commit 7a2942f7bdf39ebfc31ea90c0685b5890d30964d >Author: Christian Kellner <gicmo gnome org> >Date: Thu May 12 10:47:36 2011 +0200 > > Pass mount_info to async_path_call callbacks > > Modify all callbacks do_async_path_call () to receive an additional > GMountInfo parameter. > > client/gdaemonfile.c | 24 +++++++++++++++++++++++- > 1 files changed, 23 insertions(+), 1 deletions(-) >--- >diff --git a/client/gdaemonfile.c b/client/gdaemonfile.c >index ccb0682..26b88da 100644 >--- a/client/gdaemonfile.c >+++ b/client/gdaemonfile.c >@@ -551,6 +551,7 @@ do_sync_2_path_call (GFile *file1, > > typedef void (*AsyncPathCallCallback) (DBusMessage *reply, > DBusConnection *connection, >+ GMountInfo *mount_info, > GSimpleAsyncResult *result, > GCancellable *cancellable, > gpointer callback_data); >@@ -565,6 +566,7 @@ typedef struct { > AsyncPathCallCallback callback; > gpointer callback_data; > GDestroyNotify notify; >+ GMountInfo *mount_info; > } AsyncPathCall; > > static void >@@ -581,6 +583,8 @@ async_path_call_free (AsyncPathCall *data) > g_object_unref (data->cancellable); > if (data->args) > dbus_message_unref (data->args); >+ if (data->mount_info) >+ g_mount_info_unref (data->mount_info); > g_free (data); > } > >@@ -605,7 +609,9 @@ async_path_call_done (DBusMessage *reply, > g_object_weak_ref (G_OBJECT (result), (GWeakNotify)async_path_call_free, data); > data->result = NULL; > >- data->callback (reply, connection, >+ data->callback (reply, >+ connection, >+ data->mount_info, > result, > data->cancellable, > data->callback_data); >@@ -634,6 +640,8 @@ do_async_path_call_callback (GMountInfo *mount_info, > return; > } > >+ data->mount_info = g_mount_info_ref (mount_info); >+ > message = > dbus_message_new_method_call (mount_info->dbus_id, > mount_info->object_path, >@@ -882,6 +890,7 @@ g_daemon_file_query_info (GFile *file, > static void > query_info_async_cb (DBusMessage *reply, > DBusConnection *connection, >+ GMountInfo *mount_info, > GSimpleAsyncResult *result, > GCancellable *cancellable, > gpointer callback_data) >@@ -999,6 +1008,7 @@ read_async_get_fd_cb (int fd, > static void > read_async_cb (DBusMessage *reply, > DBusConnection *connection, >+ GMountInfo *mount_info, > GSimpleAsyncResult *result, > GCancellable *cancellable, > gpointer callback_data) >@@ -1324,6 +1334,7 @@ mount_mountable_location_mounted_cb (GObject *source_object, > static void > mount_mountable_async_cb (DBusMessage *reply, > DBusConnection *connection, >+ GMountInfo *mount_info, > GSimpleAsyncResult *result, > GCancellable *cancellable, > gpointer callback_data) >@@ -1440,6 +1451,7 @@ g_daemon_file_mount_mountable_finish (GFile *file, > static void > start_mountable_async_cb (DBusMessage *reply, > DBusConnection *connection, >+ GMountInfo *mount_info, > GSimpleAsyncResult *result, > GCancellable *cancellable, > gpointer callback_data) >@@ -1490,6 +1502,7 @@ g_daemon_file_start_mountable_finish (GFile *file, > static void > stop_mountable_async_cb (DBusMessage *reply, > DBusConnection *connection, >+ GMountInfo *mount_info, > GSimpleAsyncResult *result, > GCancellable *cancellable, > gpointer callback_data) >@@ -1543,6 +1556,7 @@ g_daemon_file_stop_mountable_finish (GFile *file, > static void > eject_mountable_async_cb (DBusMessage *reply, > DBusConnection *connection, >+ GMountInfo *mount_info, > GSimpleAsyncResult *result, > GCancellable *cancellable, > gpointer callback_data) >@@ -1613,6 +1627,7 @@ g_daemon_file_eject_mountable_finish (GFile *file, > static void > unmount_mountable_async_cb (DBusMessage *reply, > DBusConnection *connection, >+ GMountInfo *mount_info, > GSimpleAsyncResult *result, > GCancellable *cancellable, > gpointer callback_data) >@@ -1665,6 +1680,7 @@ g_daemon_file_unmount_mountable_with_operation_finish (GFile *file > static void > poll_mountable_async_cb (DBusMessage *reply, > DBusConnection *connection, >+ GMountInfo *mount_info, > GSimpleAsyncResult *result, > GCancellable *cancellable, > gpointer callback_data) >@@ -1862,6 +1878,7 @@ g_daemon_file_query_filesystem_info (GFile *file, > static void > query_fs_info_async_cb (DBusMessage *reply, > DBusConnection *connection, >+ GMountInfo *mount_info, > GSimpleAsyncResult *result, > GCancellable *cancellable, > gpointer callback_data) >@@ -2630,6 +2647,7 @@ out: > static void > append_to_async_cb (DBusMessage *reply, > DBusConnection *connection, >+ GMountInfo *mount_info, > GSimpleAsyncResult *result, > GCancellable *cancellable, > gpointer callback_data) >@@ -2714,6 +2732,7 @@ g_daemon_file_append_to_finish (GFile *file, > static void > create_async_cb (DBusMessage *reply, > DBusConnection *connection, >+ GMountInfo *mount_info, > GSimpleAsyncResult *result, > GCancellable *cancellable, > gpointer callback_data) >@@ -2796,6 +2815,7 @@ g_daemon_file_create_finish (GFile *file, > static void > enumerate_children_async_cb (DBusMessage *reply, > DBusConnection *connection, >+ GMountInfo *mount_info, > GSimpleAsyncResult *result, > GCancellable *cancellable, > gpointer callback_data) >@@ -2977,6 +2997,7 @@ g_daemon_file_find_enclosing_mount_finish (GFile *file, > static void > replace_async_cb (DBusMessage *reply, > DBusConnection *connection, >+ GMountInfo *mount_info, > GSimpleAsyncResult *result, > GCancellable *cancellable, > gpointer callback_data) >@@ -3058,6 +3079,7 @@ g_daemon_file_replace_finish (GFile *file, > static void > set_display_name_async_cb (DBusMessage *reply, > DBusConnection *connection, >+ GMountInfo *mount_info, > GSimpleAsyncResult *result, > GCancellable *cancellable, > gpointer callback_data) >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 1011835
: 854335 |
854336
|
854337
|
854338
|
854339