libtls: Remove unused variable in TLS socket implementation

Not used anymore since c43e8fdec4 ("Block TLS read when sending data,
but have to wait for the handshake data first").
This commit is contained in:
Tobias Brunner 2020-03-02 16:37:36 +01:00
parent 68e8fedccb
commit 479c85d569
1 changed files with 2 additions and 2 deletions

View File

@ -158,9 +158,9 @@ static bool exchange(private_tls_socket_t *this, bool wr, bool block)
char buf[CRYPTO_BUF_SIZE], *pos;
ssize_t in, out;
size_t len;
int round = 0, flags;
int flags;
for (round = 0; TRUE; round++)
while (TRUE)
{
while (TRUE)
{