]> git.ipfire.org Git - ipfire-2.x.git/blob - src/patches/squid/squid-3.5-14182.patch
squid 3.5.26: latest patches (14169-14182)
[ipfire-2.x.git] / src / patches / squid / squid-3.5-14182.patch
1 ------------------------------------------------------------
2 revno: 14182
3 revision-id: squid3@treenet.co.nz-20170701232253-3beaysa03xf5c67p
4 parent: squidadm@squid-cache.org-20170701121615-ktx76udds2mzmc6c
5 committer: Amos Jeffries <squid3@treenet.co.nz>
6 branch nick: 3.5
7 timestamp: Sun 2017-07-02 11:22:53 +1200
8 message:
9 Fix build on FreeBSD after rev.14180
10
11 RefCount<> does not support assignment from nullptr with C++03
12 ------------------------------------------------------------
13 # Bazaar merge directive format 2 (Bazaar 0.90)
14 # revision_id: squid3@treenet.co.nz-20170701232253-3beaysa03xf5c67p
15 # target_branch: http://bzr.squid-cache.org/bzr/squid3/3.5
16 # testament_sha1: d5ecf68c60c022783f69311e9049e546be8fa1a0
17 # timestamp: 2017-07-01 23:50:58 +0000
18 # source_branch: http://bzr.squid-cache.org/bzr/squid3/3.5
19 # base_revision_id: squidadm@squid-cache.org-20170701121615-\
20 # ktx76udds2mzmc6c
21 #
22 # Begin patch
23 === modified file 'src/http.cc'
24 --- src/http.cc 2017-07-01 12:08:48 +0000
25 +++ src/http.cc 2017-07-01 23:22:53 +0000
26 @@ -1449,7 +1449,7 @@
27
28 Comm::ConnectionPointer serverConnectionSaved = serverConnection;
29 fwd->unregister(serverConnection);
30 - serverConnection = nullptr;
31 + serverConnection = NULL;
32
33 bool ispinned = false; // TODO: Rename to isOrShouldBePinned
34 if (request->flags.pinned) {
35