]> git.pld-linux.org Git - packages/varnish.git/blame - branch.diff
- add missing deps, found by cleanbuild
[packages/varnish.git] / branch.diff
CommitLineData
3eac6b1b 1# Revision 4859
5ca4bae7
ER
2Index: doc/changes-2.0.5-2.0.6.xml
3===================================================================
9eb7b212 4--- doc/changes-2.0.5-2.0.6.xml (.../tags/varnish-2.0.6/varnish-cache)
5ca4bae7 5+++ doc/changes-2.0.5-2.0.6.xml (.../branches/2.0/varnish-cache)
9eb7b212
ER
6@@ -49,5 +49,5 @@
7 <para>Document the <code>-C</code> option
8 to <code>varnishd</code>.</para>
9 </change>
10- <subsystem>
a5001fa8 11+ </subsystem>
9eb7b212 12 </group>
3eac6b1b
ER
13Index: bin/varnishtop/varnishtop.c
14===================================================================
15--- bin/varnishtop/varnishtop.c (.../tags/varnish-2.0.6/varnish-cache)
16+++ bin/varnishtop/varnishtop.c (.../branches/2.0/varnish-cache)
17@@ -273,7 +273,9 @@
18 if (tp->count <= 1.0)
19 break;
20 len = SHMLOG_LEN(tp->rec);
21- printf("%9.2f %s %*.*s\n", tp->count, VSL_tags[tp->rec[SHMLOG_TAG]], len, len, tp->rec + SHMLOG_DATA);
22+ printf("%9.2f %s %*.*s\n",
23+ tp->count, VSL_tags[tp->rec[SHMLOG_TAG]],
24+ len, len, tp->rec_data);
25 }
26 }
27
28Index: bin/varnishd/cache_center.c
29===================================================================
30--- bin/varnishd/cache_center.c (.../tags/varnish-2.0.6/varnish-cache)
31+++ bin/varnishd/cache_center.c (.../branches/2.0/varnish-cache)
32@@ -594,7 +594,7 @@
33 CHECK_OBJ_NOTNULL(sp, SESS_MAGIC);
34 CHECK_OBJ_NOTNULL(sp->vcl, VCL_CONF_MAGIC);
35
36- if (sp->obj == NULL) {
37+ if (sp->objhead == NULL) {
38 HSH_Prepare(sp, sp->vcl->nhashcount);
39 VCL_hash_method(sp);
40 assert(sp->handling == VCL_RET_HASH);
This page took 0.38548 seconds and 4 git commands to generate.