View | Details | Raw Unified | Return to bug 202826
Collapse All | Expand All

(-)squid/Makefile (-1 / +1 lines)
Lines 1-7 Link Here
1
# $FreeBSD: head/www/squid/Makefile 393602 2015-08-05 18:32:18Z robak $
1
# $FreeBSD: head/www/squid/Makefile 393602 2015-08-05 18:32:18Z robak $
2
2
3
PORTNAME=	squid
3
PORTNAME=	squid
4
PORTVERSION=	3.5.7
4
PORTVERSION=	3.5.8
5
CATEGORIES=	www ipv6
5
CATEGORIES=	www ipv6
6
MASTER_SITES=	http://www.squid-cache.org/Versions/v3/${PORTVERSION:R}/ \
6
MASTER_SITES=	http://www.squid-cache.org/Versions/v3/${PORTVERSION:R}/ \
7
		http://www2.us.squid-cache.org/Versions/v3/${PORTVERSION:R}/ \
7
		http://www2.us.squid-cache.org/Versions/v3/${PORTVERSION:R}/ \
(-)squid/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (squid3.5/squid-3.5.7.tar.xz) = ec6f861bddee007b1dd320667a26ddc9ff76847bbe4cbb59c0134588e65c8699
1
SHA256 (squid3.5/squid-3.5.8.tar.xz) = f402a21d4fae8b3e9df13683dc530366e4b1753df21e91c05a0a9514a1abfc62
2
SIZE (squid3.5/squid-3.5.7.tar.xz) = 2294580
2
SIZE (squid3.5/squid-3.5.8.tar.xz) = 2295644
(-)squid/files/patch-build-clang-ecap (-40 lines)
Lines 1-40 Link Here
1
--- src/adaptation/ecap/ServiceRep.cc.orig	2015-08-01 06:08:17 UTC
2
+++ src/adaptation/ecap/ServiceRep.cc
3
@@ -234,7 +234,7 @@ bool Adaptation::Ecap::ServiceRep::probe
4
 
5
 bool Adaptation::Ecap::ServiceRep::up() const
6
 {
7
-    return theService != NULL;
8
+    return theService;
9
 }
10
 
11
 bool Adaptation::Ecap::ServiceRep::wantsUrl(const String &urlPath) const
12
--- src/adaptation/ecap/XactionRep.cc.orig	2015-08-01 06:08:17 UTC
13
+++ src/adaptation/ecap/XactionRep.cc
14
@@ -72,7 +72,7 @@ void
15
 Adaptation::Ecap::XactionRep::master(const AdapterXaction &x)
16
 {
17
     Must(!theMaster);
18
-    Must(x != NULL);
19
+    Must(x);
20
     theMaster = x;
21
 }
22
 
23
@@ -259,7 +259,7 @@ Adaptation::Ecap::XactionRep::swanSong()
24
     // clear body_pipes, if any
25
     // this code does not maintain proxying* and canAccessVb states; should it?
26
 
27
-    if (theAnswerRep != NULL) {
28
+    if (theAnswerRep) {
29
         BodyPipe::Pointer body_pipe = answer().body_pipe;
30
         if (body_pipe != NULL) {
31
             Must(body_pipe->stillProducing(this));
32
@@ -318,7 +318,7 @@ Adaptation::Ecap::XactionRep::cause()
33
 libecap::Message &
34
 Adaptation::Ecap::XactionRep::adapted()
35
 {
36
-    Must(theAnswerRep != NULL);
37
+    Must(theAnswerRep);
38
     return *theAnswerRep;
39
 }
40
 

Return to bug 202826