mirror of
https://github.com/adulau/ssldump.git
synced 2024-11-07 12:06:27 +00:00
improve syntax
This commit is contained in:
parent
0a6dada0f1
commit
f27bc9fe2a
1 changed files with 2 additions and 2 deletions
|
@ -2498,7 +2498,7 @@ static int decode_extension_encrypt_then_mac(ssl,dir,seg,data)
|
|||
data->len-=l;
|
||||
data->data+=l;
|
||||
|
||||
*etm=dir==DIR_I2R?1:*etm+1;
|
||||
dir==DIR_I2R?*etm=1:++*etm;
|
||||
return(0);
|
||||
}
|
||||
static int decode_extension_extended_master_secret(ssl,dir,seg,data)
|
||||
|
@ -2515,7 +2515,7 @@ static int decode_extension_extended_master_secret(ssl,dir,seg,data)
|
|||
data->len-=l;
|
||||
data->data+=l;
|
||||
|
||||
*ems=dir==DIR_I2R?1:*ems+1;
|
||||
dir==DIR_I2R?*ems=1:++*ems;
|
||||
return(0);
|
||||
}
|
||||
static int decode_extension(ssl,dir,seg,data)
|
||||
|
|
Loading…
Reference in a new issue