mirror of
https://github.com/yuzu-emu/mbedtls
synced 2024-11-24 14:08:20 +00:00
Align ssl_read in fork_server on ssl_server
It was the only program using a weird do while( 0 ) with a continue inside
This commit is contained in:
parent
f53df4fcd8
commit
401caadebd
1 changed files with 4 additions and 1 deletions
|
@ -342,8 +342,11 @@ int main( void )
|
|||
|
||||
len = ret;
|
||||
polarssl_printf( " %d bytes read\n\n%s", len, (char *) buf );
|
||||
|
||||
if( ret > 0 )
|
||||
break;
|
||||
}
|
||||
while( 0 );
|
||||
while( 1 );
|
||||
|
||||
/*
|
||||
* 7. Write the 200 Response
|
||||
|
|
Loading…
Reference in a new issue