Remove obvious empty statements (i.e. stray semicolons)

This commit is contained in:
Tobias Brunner
2024-02-29 15:30:40 +01:00
parent 9d1f325a77
commit 6dee8587f0
22 changed files with 28 additions and 28 deletions
+1 -1
View File
@@ -144,7 +144,7 @@ static bool generate_iv(private_iv_manager_t *this, iv_data_t *iv)
else
{
/* initial phase 2 IV = hash(last_phase1_block | mid) */
uint32_t net;;
uint32_t net;
chunk_t data;
net = htonl(iv->mid);
+1 -1
View File
@@ -1416,7 +1416,7 @@ static linked_list_t* get_ts_if_nat_transport(private_child_create_t *this,
static child_cfg_t* select_child_cfg(private_child_create_t *this)
{
peer_cfg_t *peer_cfg;
child_cfg_t *child_cfg = NULL;;
child_cfg_t *child_cfg = NULL;
peer_cfg = this->ike_sa->get_peer_cfg(this->ike_sa);
if (peer_cfg && this->tsi && this->tsr)