child-sa: Use single return statement in update_usebytes()

Signed-off-by: Thomas Egerer <[email protected]>
This commit is contained in:
Thomas Egerer
2016-11-18 11:58:14 +01:00
committed by Tobias Brunner
parent 649537ee8d
commit 1042b9194f
+8 -4
View File
@@ -495,9 +495,11 @@ static status_t update_usebytes(private_child_sa_t *this, bool inbound)
{
this->my_usetime = time;
}
return SUCCESS;
}
return FAILED;
else
{
status = FAILED;
}
}
}
}
@@ -526,9 +528,11 @@ static status_t update_usebytes(private_child_sa_t *this, bool inbound)
{
this->other_usetime = time;
}
return SUCCESS;
}
return FAILED;
else
{
status = FAILED;
}
}
}
}