From 0927dda8ad29cb4e6b3d19977be1fb747b1d4950 Mon Sep 17 00:00:00 2001 From: Christian Dywan Date: Fri, 24 Sep 2010 13:56:35 +0200 Subject: [PATCH] Correct error message when GUnixOutputStream fails to write Fixes: https://bugzilla.gnome.org/show_bug.cgi?id=628876 --- gio/gunixoutputstream.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gio/gunixoutputstream.c b/gio/gunixoutputstream.c index 0a47dd66d..0d43c6638 100644 --- a/gio/gunixoutputstream.c +++ b/gio/gunixoutputstream.c @@ -435,7 +435,7 @@ write_async_cb (WriteAsyncData *data, g_set_error (&error, G_IO_ERROR, g_io_error_from_errno (errsv), - _("Error reading from unix: %s"), + _("Error writing to unix: %s"), g_strerror (errsv)); } break;