From: wessels <> Date: Thu, 9 Apr 1998 04:48:47 +0000 (+0000) Subject: ERESTART might not be defined X-Git-Tag: SQUID_3_0_PRE1~3554 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=db494ab8dc292273c094a3f33287cf976bfe9f2f;p=thirdparty%2Fsquid.git ERESTART might not be defined --- diff --git a/src/comm.cc b/src/comm.cc index 33544035a0..2be5d3c0f7 100644 --- a/src/comm.cc +++ b/src/comm.cc @@ -1,7 +1,7 @@ /* - * $Id: comm.cc,v 1.247 1998/04/08 21:37:17 wessels Exp $ + * $Id: comm.cc,v 1.248 1998/04/08 22:48:47 wessels Exp $ * * DEBUG: section 5 Socket Functions * AUTHOR: Harvest Derived @@ -1453,7 +1453,9 @@ ignoreErrno(int ierrno) #endif case EALREADY: case EINTR: - case ERESTART: /* Solaris only? */ +#ifdef ERESTART + case ERESTART: +#endif return 1; default: return 0;