diff --git a/gio/gioerror.c b/gio/gioerror.c index 0e39992bb..37c8122dc 100644 --- a/gio/gioerror.c +++ b/gio/gioerror.c @@ -230,6 +230,12 @@ g_io_error_from_errno (gint err_no) break; #endif +#ifdef ENOSYS + case ENOSYS: + return G_IO_ERROR_NOT_SUPPORTED; + break; +#endif + #ifdef ETIMEDOUT case ETIMEDOUT: return G_IO_ERROR_TIMED_OUT; diff --git a/gio/tests/error.c b/gio/tests/error.c index 298fa88b0..a38008eee 100644 --- a/gio/tests/error.c +++ b/gio/tests/error.c @@ -322,7 +322,7 @@ test_error_from_errno (void) #ifdef ENOSYS g_assert_cmpuint (g_io_error_from_errno (ENOSYS), ==, - G_IO_ERROR_FAILED); + G_IO_ERROR_NOT_SUPPORTED); #endif #ifdef ENOMSG