mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-06-03 19:30:07 +02:00
Cope with EEXIST == ENOTEMPTY. Reported by Nicolas Joseph
* gioerror.c (g_io_error_from_errno): Cope with EEXIST == ENOTEMPTY. Reported by Nicolas Joseph svn path=/trunk/; revision=7859
This commit is contained in:
parent
9bd1712204
commit
bbf0530f24
@ -1,3 +1,11 @@
|
|||||||
|
2009-02-11 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
|
Bug 541225 – Can't compile gio on AIX : duplicate case value in
|
||||||
|
gioerror.c
|
||||||
|
|
||||||
|
* gioerror.c (g_io_error_from_errno): Cope with EEXIST == ENOTEMPTY.
|
||||||
|
Reported by Nicolas Joseph
|
||||||
|
|
||||||
2009-02-04 Alexander Larsson <alexl@redhat.com>
|
2009-02-04 Alexander Larsson <alexl@redhat.com>
|
||||||
|
|
||||||
Bug 566747 - URIs opened with firefox %u load as local files
|
Bug 566747 - URIs opened with firefox %u load as local files
|
||||||
|
@ -138,7 +138,7 @@ g_io_error_from_errno (gint err_no)
|
|||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef ENOTEMPTY
|
#if defined(ENOTEMPTY) && (!defined (EEXIST) || (ENOTEMPTY != EEXIST))
|
||||||
case ENOTEMPTY:
|
case ENOTEMPTY:
|
||||||
return G_IO_ERROR_NOT_EMPTY;
|
return G_IO_ERROR_NOT_EMPTY;
|
||||||
break;
|
break;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user