Aurelien Jarno <[EMAIL PROTECTED]> writes: > Why you don't fix your code instead of creating more problems than you > try to solve? You say us you already have a technical solution in your > code for EWOULDBLOCK and EAGAIN. Please apply the same for ENOTSUP and > EOPNOTSUPP.
The sad part is that if it's just an issue with duplicate case statements, it's a two-line fix. case ENOTSUP: case EOPNOTSUPP: becomes: case ENOTSUP: #if ENOTSUP != EOPNOTSUPP case EOPNOTSUPP: #endif -- Russ Allbery ([EMAIL PROTECTED]) <http://www.eyrie.org/~eagle/> -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]