From 81dab99afcd0d9030aff9ab3f54a7a80101e36d2 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Mon, 27 Jul 2009 23:14:04 +0200 Subject: Fix stdint type. --- libssh/crypt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libssh/crypt.c') diff --git a/libssh/crypt.c b/libssh/crypt.c index e7f2633..bb77767 100644 --- a/libssh/crypt.c +++ b/libssh/crypt.c @@ -195,7 +195,7 @@ int packet_hmac_verify(SSH_SESSION *session, ssh_buffer buffer, #ifdef DEBUG_CRYPTO ssh_print_hexa("received mac",mac,len); ssh_print_hexa("Computed mac",hmacbuf,len); - ssh_print_hexa("seq",(unsigned char *)&seq,sizeof(u32)); + ssh_print_hexa("seq",(unsigned char *)&seq,sizeof(uint32_t)); #endif if (memcmp(mac, hmacbuf, len) == 0) { return 0; -- cgit