mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-25 09:12:24 +00:00
sshmd5.c: remove excessive return statement
This commit is contained in:
parent
24b9e6716d
commit
bcf6f52bf2
2
sshmd5.c
2
sshmd5.c
@ -311,7 +311,7 @@ void hmacmd5_do_hmac(struct hmacmd5_context *ctx,
|
|||||||
{
|
{
|
||||||
ssh2_mac_start(&ctx->mac);
|
ssh2_mac_start(&ctx->mac);
|
||||||
put_data(&ctx->mac, blk, len);
|
put_data(&ctx->mac, blk, len);
|
||||||
return ssh2_mac_genresult(&ctx->mac, hmac);
|
ssh2_mac_genresult(&ctx->mac, hmac);
|
||||||
}
|
}
|
||||||
|
|
||||||
const struct ssh2_macalg ssh_hmac_md5 = {
|
const struct ssh2_macalg ssh_hmac_md5 = {
|
||||||
|
Loading…
Reference in New Issue
Block a user