diff options
-rw-r--r-- | ChangeLog | 10 | ||||
-rw-r--r-- | client/gdaemonfile.c | 1 | ||||
-rw-r--r-- | client/gdaemonfileinputstream.c | 2 |
3 files changed, 13 insertions, 0 deletions
@@ -1,5 +1,15 @@ 2007-11-06 Alexander Larsson <alexl@redhat.com> + * client/gdaemonfile.c: + (g_daemon_file_file_iface_init): + Actually export get_uri_scheme + + * client/gdaemonfileinputstream.c: + (g_daemon_file_input_stream_query_info): + Set NOT_SUPPORTED error + +2007-11-06 Alexander Larsson <alexl@redhat.com> + * common/gmountoperationdbus.c: * common/gmounttracker.c: * daemon/gvfsbackend.h: diff --git a/client/gdaemonfile.c b/client/gdaemonfile.c index 9d15ed37..fa1c0ae7 100644 --- a/client/gdaemonfile.c +++ b/client/gdaemonfile.c @@ -1944,6 +1944,7 @@ g_daemon_file_file_iface_init (GFileIface *iface) iface->equal = g_daemon_file_equal; iface->is_native = g_daemon_file_is_native; iface->has_uri_scheme = g_daemon_file_has_uri_scheme; + iface->get_uri_scheme = g_daemon_file_get_uri_scheme; iface->get_basename = g_daemon_file_get_basename; iface->get_path = g_daemon_file_get_path; iface->get_uri = g_daemon_file_get_uri; diff --git a/client/gdaemonfileinputstream.c b/client/gdaemonfileinputstream.c index b014733a..8e2c5873 100644 --- a/client/gdaemonfileinputstream.c +++ b/client/gdaemonfileinputstream.c @@ -1235,6 +1235,8 @@ g_daemon_file_input_stream_query_info (GFileInputStream *stream, file = G_DAEMON_FILE_INPUT_STREAM (stream); + g_set_error (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED, _("The query info operation is not supported")); + return NULL; } |