projects
/
platform
/
upstream
/
glib.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
80de3ca
)
Correct error message when GUnixOutputStream fails to write
author
Christian Dywan
<christian@twotoasts.de>
Fri, 24 Sep 2010 11:56:35 +0000
(13:56 +0200)
committer
Christian 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
patch
|
blob
|
history
diff --git
a/gio/gunixoutputstream.c
b/gio/gunixoutputstream.c
index 0a47dd66d0f1286d038d6aa64ef85a5b42dd2893..0d43c6638b1469446cd4792d9dd6b26a9c5028e4 100644
(file)
--- 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;