summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2007-11-06 14:15:38 +0000
committerAlexander Larsson <alexl@src.gnome.org>2007-11-06 14:15:38 +0000
commit282e0a7334614e746efb789e0e769287c5962c4e (patch)
treef810db4f4de3c0bb723870e4c8d592aece523cc3
parent880fee930818b3a689e585823d0710f6eac8329d (diff)
downloadgvfs-282e0a7334614e746efb789e0e769287c5962c4e.tar.gz
Actually export get_uri_scheme
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 svn path=/trunk/; revision=1011
-rw-r--r--ChangeLog10
-rw-r--r--client/gdaemonfile.c1
-rw-r--r--client/gdaemonfileinputstream.c2
3 files changed, 13 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 8f0f9f17..c1a3335d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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;
}