aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Schneider <mail@cynapses.org>2009-07-27 23:14:04 +0200
committerAndreas Schneider <mail@cynapses.org>2009-07-27 23:14:04 +0200
commit81dab99afcd0d9030aff9ab3f54a7a80101e36d2 (patch)
treea87a74a4988c78e6dd6b0dc8d338c09c727e225b
parent291522772d49898081cc9f09aadd9a9475db4c2f (diff)
downloadlibssh-81dab99afcd0d9030aff9ab3f54a7a80101e36d2.tar.gz
libssh-81dab99afcd0d9030aff9ab3f54a7a80101e36d2.tar.xz
libssh-81dab99afcd0d9030aff9ab3f54a7a80101e36d2.zip
Fix stdint type.
-rw-r--r--libssh/crypt.c2
1 files changed, 1 insertions, 1 deletions
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;