summaryrefslogtreecommitdiff
path: root/client/gdaemonfileoutputstream.c
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2007-11-27 15:31:25 +0000
committerAlexander Larsson <alexl@src.gnome.org>2007-11-27 15:31:25 +0000
commit10c201b0d89a47f6b7fcaf34ef1e37eb7e7c3486 (patch)
tree8e7f53313d9087c6d0b7fed990b5db4bf4140974 /client/gdaemonfileoutputstream.c
parent630a801327347ca629842c77f68f488bfa6aa489 (diff)
downloadgvfs-10c201b0d89a47f6b7fcaf34ef1e37eb7e7c3486.tar.gz
Update to build with the latest glib included gio
2007-11-27 Alexander Larsson <alexl@redhat.com> * client/gdaemonfileinputstream.c: * client/gdaemonfileoutputstream.c: * client/gdaemonvfs.c: * client/gvfsfusedaemon.c: * client/gvfsuriutils.h: * daemon/gvfsbackend.c: * daemon/gvfsbackendsftp.c: * daemon/gvfsbackendtrash.c: * daemon/gvfschannel.c: * daemon/gvfsmonitor.c: * daemon/mount.c: Update to build with the latest glib included gio svn path=/trunk/; revision=1034
Diffstat (limited to 'client/gdaemonfileoutputstream.c')
-rw-r--r--client/gdaemonfileoutputstream.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/client/gdaemonfileoutputstream.c b/client/gdaemonfileoutputstream.c
index aadf5c72..9b662f7f 100644
--- a/client/gdaemonfileoutputstream.c
+++ b/client/gdaemonfileoutputstream.c
@@ -38,8 +38,8 @@
#include <gio/gseekable.h>
#include "gdaemonfileoutputstream.h"
#include "gvfsdaemondbus.h"
-#include <gio/gsocketinputstream.h>
-#include <gio/gsocketoutputstream.h>
+#include <gio/gunixinputstream.h>
+#include <gio/gunixoutputstream.h>
#include <gio/gsimpleasyncresult.h>
#include <gvfsdaemonprotocol.h>
@@ -255,8 +255,8 @@ g_daemon_file_output_stream_new (int fd,
stream = g_object_new (G_TYPE_DAEMON_FILE_OUTPUT_STREAM, NULL);
- stream->command_stream = g_socket_output_stream_new (fd, FALSE);
- stream->data_stream = g_socket_input_stream_new (fd, TRUE);
+ stream->command_stream = g_unix_output_stream_new (fd, FALSE);
+ stream->data_stream = g_unix_input_stream_new (fd, TRUE);
stream->can_seek = can_seek;
stream->current_offset = initial_offset;