mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2025-12-24 00:06:32 +01:00
- Made changes for better compatibility with old-style C compilers
This commit is contained in:
parent
ebb2bebbe2
commit
026c03b7f4
9 changed files with 20 additions and 19 deletions
|
|
@ -127,8 +127,8 @@ static int ssl_test( struct options *opt )
|
|||
int client_fd;
|
||||
int bytes_to_read;
|
||||
int bytes_to_write;
|
||||
int offset_to_read;
|
||||
int offset_to_write;
|
||||
int offset_to_read = 0;
|
||||
int offset_to_write = 0;
|
||||
|
||||
long int nb_read;
|
||||
long int nb_written;
|
||||
|
|
@ -136,8 +136,8 @@ static int ssl_test( struct options *opt )
|
|||
unsigned long read_state[5];
|
||||
unsigned long write_state[5];
|
||||
|
||||
unsigned char *read_buf;
|
||||
unsigned char *write_buf;
|
||||
unsigned char *read_buf = NULL;
|
||||
unsigned char *write_buf = NULL;
|
||||
|
||||
struct hr_time t;
|
||||
havege_state hs;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue