summaryrefslogtreecommitdiffstats
path: root/ucad.c
diff options
context:
space:
mode:
Diffstat (limited to 'ucad.c')
-rw-r--r--ucad.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/ucad.c b/ucad.c
index 02e2f95..4d46bca 100644
--- a/ucad.c
+++ b/ucad.c
@@ -366,7 +366,11 @@ serve_connection (GSocketConnection *connection, UcaCamera *camera)
g_input_stream_read (input, buffer, 4096, NULL, &error);
message = (UcaNetMessageDefault *) buffer;
+#if (GLIB_CHECK_VERSION (2, 36, 0))
if (g_error_matches (error, G_IO_ERROR, G_IO_ERROR_BROKEN_PIPE)) {
+#else
+ if (g_error_matches (error, G_IO_ERROR, G_IO_ERROR_FAILED)) {
+#endif
g_error_free (error);
error = NULL;
active = FALSE;