From 1949641d102b0fdc8d4314abaee9ba055481fcc0 Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Thu, 6 Dec 2007 14:16:46 -0600 Subject: Fix compiler warnings that appear only on OpenBSD. --- src/crypto/asn1.c | 6 +++--- src/crypto/chap.c | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src/crypto') diff --git a/src/crypto/asn1.c b/src/crypto/asn1.c index 2ff820085..0a69162a8 100644 --- a/src/crypto/asn1.c +++ b/src/crypto/asn1.c @@ -75,8 +75,8 @@ static int asn1_start_object ( struct asn1_cursor *cursor, len_len = 1; } if ( cursor->len < len_len ) { - DBGC ( cursor, "ASN1 %p bad length field length %d (max %d)\n", - cursor, len_len, cursor->len ); + DBGC ( cursor, "ASN1 %p bad length field length %d (max " + "%zd)\n", cursor, len_len, cursor->len ); goto notfound; } @@ -88,7 +88,7 @@ static int asn1_start_object ( struct asn1_cursor *cursor, cursor->len--; } if ( cursor->len < len ) { - DBGC ( cursor, "ASN1 %p bad length %d (max %d)\n", + DBGC ( cursor, "ASN1 %p bad length %d (max %zd)\n", cursor, len, cursor->len ); goto notfound; } diff --git a/src/crypto/chap.c b/src/crypto/chap.c index 2f624564f..13b8fda21 100644 --- a/src/crypto/chap.c +++ b/src/crypto/chap.c @@ -55,7 +55,7 @@ int chap_init ( struct chap_challenge *chap, state_len = ( digest->ctxsize + digest->digestsize ); state = malloc ( state_len ); if ( ! state ) { - DBG ( "CHAP %p could not allocate %d bytes for state\n", + DBG ( "CHAP %p could not allocate %zd bytes for state\n", chap, state_len ); return -ENOMEM; } -- cgit v1.2.3-55-g7522