Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
varnish-cache
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
varnishcache
varnish-cache
Commits
5220c394
Commit
5220c394
authored
Apr 26, 2018
by
Federico G. Schwindt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix compiling under epel6
Reported by ingvar
parent
1113031f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
vtc_process.c
bin/varnishtest/vtc_process.c
+2
-2
No files found.
bin/varnishtest/vtc_process.c
View file @
5220c394
...
...
@@ -485,7 +485,7 @@ process_stdout(const struct vev *ev, int what)
vtc_dump
(
p
->
vl
,
4
,
"stdout"
,
buf
,
i
);
else
if
(
p
->
log
==
3
)
vtc_hexdump
(
p
->
vl
,
4
,
"stdout"
,
buf
,
i
);
(
void
)
write
(
p
->
f_stdout
,
buf
,
i
);
assert
(
write
(
p
->
f_stdout
,
buf
,
i
)
==
i
);
AZ
(
pthread_mutex_lock
(
&
p
->
mtx
));
teken_input
(
p
->
tek
,
buf
,
i
);
AZ
(
pthread_mutex_unlock
(
&
p
->
mtx
));
...
...
@@ -510,7 +510,7 @@ process_stderr(const struct vev *ev, int what)
p
->
stderr_bytes
+=
i
;
AZ
(
pthread_mutex_unlock
(
&
p
->
mtx
));
vtc_dump
(
p
->
vl
,
4
,
"stderr"
,
buf
,
i
);
(
void
)
write
(
p
->
f_stderr
,
buf
,
i
);
assert
(
write
(
p
->
f_stderr
,
buf
,
i
)
==
i
);
return
(
0
);
}
...
...
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