]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
ERESTART might not be defined
authorwessels <>
Thu, 9 Apr 1998 04:48:47 +0000 (04:48 +0000)
committerwessels <>
Thu, 9 Apr 1998 04:48:47 +0000 (04:48 +0000)
src/comm.cc

index 33544035a0a5b3903624708269cc7d54c63048aa..2be5d3c0f76baa3138bdca5191af1078314b0dd7 100644 (file)
@@ -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;