Correct error message when GUnixOutputStream fails to write
authorChristian Dywan <christian@twotoasts.de>
Fri, 24 Sep 2010 11:56:35 +0000 (13:56 +0200)
committerChristian Dywan <christian@twotoasts.de>
Fri, 24 Sep 2010 11:56:35 +0000 (13:56 +0200)
Fixes: https://bugzilla.gnome.org/show_bug.cgi?id=628876

gio/gunixoutputstream.c

index 0a47dd6..0d43c66 100644 (file)
@@ -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;