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:
Manuel Pégourié-Gonnard 2015-02-14 15:53:24 +00:00
parent f53df4fcd8
commit 401caadebd

View file

@ -342,8 +342,11 @@ int main( void )
len = ret; len = ret;
polarssl_printf( " %d bytes read\n\n%s", len, (char *) buf ); polarssl_printf( " %d bytes read\n\n%s", len, (char *) buf );
if( ret > 0 )
break;
} }
while( 0 ); while( 1 );
/* /*
* 7. Write the 200 Response * 7. Write the 200 Response