]> git.ipfire.org Git - ipfire-2.x.git/blob - src/patches/squid/squid-3.5-14111.patch
core108: Ship updated syslogdctrl
[ipfire-2.x.git] / src / patches / squid / squid-3.5-14111.patch
1 ------------------------------------------------------------
2 revno: 14111
3 revision-id: squid3@treenet.co.nz-20161114105434-f1uvw2lu8l4lpgay
4 parent: squid3@treenet.co.nz-20161114105124-46hmtnsg8uj4owxz
5 author: Garri Djavadyan <garryd@comnet.uz>
6 committer: Amos Jeffries <squid3@treenet.co.nz>
7 branch nick: 3.5
8 timestamp: Mon 2016-11-14 23:54:34 +1300
9 message:
10 Fix spelling for digest nonce cache maintenance event
11 ------------------------------------------------------------
12 # Bazaar merge directive format 2 (Bazaar 0.90)
13 # revision_id: squid3@treenet.co.nz-20161114105434-f1uvw2lu8l4lpgay
14 # target_branch: http://bzr.squid-cache.org/bzr/squid3/3.5
15 # testament_sha1: 8c91678868beb689db5e0e6eaa6911c44f503ac8
16 # timestamp: 2016-11-14 10:56:03 +0000
17 # source_branch: http://bzr.squid-cache.org/bzr/squid3/3.5
18 # base_revision_id: squid3@treenet.co.nz-20161114105124-\
19 # 46hmtnsg8uj4owxz
20 #
21 # Begin patch
22 === modified file 'src/auth/digest/Config.cc'
23 --- src/auth/digest/Config.cc 2016-01-01 00:14:27 +0000
24 +++ src/auth/digest/Config.cc 2016-11-14 10:54:34 +0000
25 @@ -204,7 +204,7 @@
26 if (!digest_nonce_cache) {
27 digest_nonce_cache = hash_create((HASHCMP *) strcmp, 7921, hash_string);
28 assert(digest_nonce_cache);
29 - eventAdd("Digest none cache maintenance", authenticateDigestNonceCacheCleanup, NULL, static_cast<Auth::Digest::Config*>(Auth::Config::Find("digest"))->nonceGCInterval, 1);
30 + eventAdd("Digest nonce cache maintenance", authenticateDigestNonceCacheCleanup, NULL, static_cast<Auth::Digest::Config*>(Auth::Config::Find("digest"))->nonceGCInterval, 1);
31 }
32 }
33
34 @@ -268,7 +268,7 @@
35 debugs(29, 3, "Finished cleaning the nonce cache.");
36
37 if (static_cast<Auth::Digest::Config*>(Auth::Config::Find("digest"))->active())
38 - eventAdd("Digest none cache maintenance", authenticateDigestNonceCacheCleanup, NULL, static_cast<Auth::Digest::Config*>(Auth::Config::Find("digest"))->nonceGCInterval, 1);
39 + eventAdd("Digest nonce cache maintenance", authenticateDigestNonceCacheCleanup, NULL, static_cast<Auth::Digest::Config*>(Auth::Config::Find("digest"))->nonceGCInterval, 1);
40 }
41
42 static void
43