summaryrefslogtreecommitdiffstats
path: root/src/packet_crypt.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/packet_crypt.c')
-rw-r--r--src/packet_crypt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/packet_crypt.c b/src/packet_crypt.c
index 83a9bb3d..ecec2f69 100644
--- a/src/packet_crypt.c
+++ b/src/packet_crypt.c
@@ -164,7 +164,7 @@ int packet_hmac_verify(ssh_session session, ssh_buffer buffer,
seq = htonl(session->recv_seq);
hmac_update(ctx, (unsigned char *) &seq, sizeof(uint32_t));
- hmac_update(ctx, buffer_get_rest(buffer), buffer_get_rest_len(buffer));
+ hmac_update(ctx, ssh_buffer_get_rest(buffer), ssh_buffer_get_rest_len(buffer));
hmac_final(ctx, hmacbuf, &len);
#ifdef DEBUG_CRYPTO