]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Fix build error when IP_TOS is not defined.
authorserassio <>
Sat, 11 Aug 2007 18:13:26 +0000 (18:13 +0000)
committerserassio <>
Sat, 11 Aug 2007 18:13:26 +0000 (18:13 +0000)
src/comm.cc

index eab7fd4090c7e8961f79bd37cb7d1f60a0de1401..134924e8837fdb77d2fc97a7ca15a42cca2e623c 100644 (file)
@@ -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
 }