From: serassio <> Date: Sat, 11 Aug 2007 18:13:26 +0000 (+0000) Subject: Fix build error when IP_TOS is not defined. X-Git-Tag: SQUID_3_0_PRE7~97 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e343a6ce9d8ff2d05c3d7c332b95f760ce2bb34e;p=thirdparty%2Fsquid.git Fix build error when IP_TOS is not defined. --- diff --git a/src/comm.cc b/src/comm.cc index eab7fd4090..134924e883 100644 --- a/src/comm.cc +++ b/src/comm.cc @@ -1,6 +1,6 @@ /* - * $Id: comm.cc,v 1.433 2007/08/02 02:18:33 amosjeffries Exp $ + * $Id: comm.cc,v 1.434 2007/08/11 12:13:26 serassio Exp $ * * DEBUG: section 5 Socket Functions * AUTHOR: Harvest Derived @@ -832,7 +832,7 @@ comm_set_tos(int fd, int tos) return x; #else debugs(50, 0, "comm_set_tos: setsockopt(IP_TOS) not supported on this platform"); - return -1 + return -1; #endif }