Hi Corinna, Corinna Vinschen wrote: > On Feb 27 13:18, Christian Franke wrote: >> ... >> >> diff --git a/winsup/cygwin/errno.cc b/winsup/cygwin/errno.cc >> index 7d58e62ec..d8c057e51 100644 >> --- a/winsup/cygwin/errno.cc >> +++ b/winsup/cygwin/errno.cc >> @@ -167,8 +167,8 @@ const char *_sys_errlist[] = >> /* ESTALE 133 */ "Stale NFS file handle", >> /* ENOTSUP 134 */ "Not supported", >> /* ENOMEDIUM 135 */ "No medium found", >> -/* ENOSHARE 136 */ "No such host or network path", >> -/* ECASECLASH 137 */ "Filename exists with different case", >> + NULL, /* Was ENOSHARE 136, no longer used. */ >> + NULL, /* Was ECASECLASH 137, no longer used. */ > In terms of politenness, wouldn't it be better to define them as > empty strings? This may be one crash less in already existing > binaries... Indeed, I missed that case. Patch attached. Christian