From: Dr. Stephen Henson Date: Tue, 21 Apr 2009 15:11:59 +0000 (+0000) Subject: Fix warning. X-Git-Tag: OpenSSL_1_0_0-beta2~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dfc8e96daa484deb1020fc49ecbc94f0e2493b00;p=openssl Fix warning. --- diff --git a/ssl/d1_pkt.c b/ssl/d1_pkt.c index 918dc70798..00b3911b27 100644 --- a/ssl/d1_pkt.c +++ b/ssl/d1_pkt.c @@ -1067,7 +1067,7 @@ start: if (rr->type == SSL3_RT_CHANGE_CIPHER_SPEC) { struct ccs_header_st ccs_hdr; - int ccs_hdr_len = DTLS1_CCS_HEADER_LENGTH; + unsigned int ccs_hdr_len = DTLS1_CCS_HEADER_LENGTH; dtls1_get_ccs_header(rr->data, &ccs_hdr);