Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
U
unique-xids
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
uplex-varnish
unique-xids
Commits
ec66fc07
Commit
ec66fc07
authored
Mar 28, 2011
by
Poul-Henning Kamp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Proper casting for debugging printout
parent
3cf16486
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
vtc_http.c
bin/varnishtest/vtc_http.c
+6
-3
No files found.
bin/varnishtest/vtc_http.c
View file @
ec66fc07
...
...
@@ -606,11 +606,14 @@ gzip_body(struct http *hp, const char *txt, char **body, int *bodylen)
i
,
hp
->
gzipresidual
);
*
bodylen
=
vz
.
total_out
;
vtc_log
(
hp
->
vl
,
4
,
"startbit = %ju %ju/%ju"
,
vz
.
start_bit
,
vz
.
start_bit
>>
3
,
vz
.
start_bit
&
7
);
(
uintmax_t
)
vz
.
start_bit
,
(
uintmax_t
)
vz
.
start_bit
>>
3
,
(
uintmax_t
)
vz
.
start_bit
&
7
);
vtc_log
(
hp
->
vl
,
4
,
"lastbit = %ju %ju/%ju"
,
vz
.
last_bit
,
vz
.
last_bit
>>
3
,
vz
.
last_bit
&
7
);
(
uintmax_t
)
vz
.
last_bit
,
(
uintmax_t
)
vz
.
last_bit
>>
3
,
(
uintmax_t
)
vz
.
last_bit
&
7
);
vtc_log
(
hp
->
vl
,
4
,
"stopbit = %ju %ju/%ju"
,
vz
.
stop_bit
,
vz
.
stop_bit
>>
3
,
vz
.
stop_bit
&
7
);
(
uintmax_t
)
vz
.
stop_bit
,
(
uintmax_t
)
vz
.
stop_bit
>>
3
,
(
uintmax_t
)
vz
.
stop_bit
&
7
);
assert
(
Z_OK
==
deflateEnd
(
&
vz
));
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment