Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
Icecast-Server
Commits
de4fdf66
Commit
de4fdf66
authored
Dec 24, 2018
by
Philipp Schafft
🦁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix: Corrected check for return value of tls_got_shutdown()
parent
0a026c8b
Pipeline
#500
failed with stage
in 15 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/client.c
src/client.c
+1
-1
No files found.
src/client.c
View file @
de4fdf66
...
...
@@ -792,7 +792,7 @@ static int client_eof(client_t *client)
if
(
!
client
->
con
)
return
0
;
if
(
client
->
con
->
tls
&&
tls_got_shutdown
(
client
->
con
->
tls
)
>
1
)
if
(
client
->
con
->
tls
&&
tls_got_shutdown
(
client
->
con
->
tls
)
>
0
)
client
->
con
->
error
=
1
;
if
(
client
->
con
->
error
)
...
...
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