Fix FTBFS

This commit is contained in:
Dan Church 2019-10-08 15:53:24 -05:00 committed by Daniel Gibson
parent 80d9c79944
commit 9110437e2d

View file

@ -701,7 +701,7 @@ int idTCP::Write(void *data, int size) {
return -1;
}
#if defined(_GNU_SOURCE) && defined(TEMP_FAILURE_RETRY
#if defined(_GNU_SOURCE) && defined(TEMP_FAILURE_RETRY)
// handle EINTR interrupted system call with TEMP_FAILURE_RETRY - this is probably GNU libc specific
if ( ( nbytes = TEMP_FAILURE_RETRY ( write( fd, data, size ) ) ) == -1 ) {
#else