sshmd5.c: remove excessive return statement

This commit is contained in:
Pavel I. Kryukov 2019-01-02 19:55:54 +03:00 коммит произвёл Simon Tatham
Родитель 24b9e6716d
Коммит bcf6f52bf2
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -311,7 +311,7 @@ void hmacmd5_do_hmac(struct hmacmd5_context *ctx,
{
ssh2_mac_start(&ctx->mac);
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 = {