From: Dr. Stephen Henson Date: Tue, 26 Jan 2010 13:24:08 +0000 (+0000) Subject: Fix VC++ warning (change had already been made to other branches). X-Git-Tag: OpenSSL_0_9_8m~36 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=e8387db0c42eb09c1c33c9241162dd514220fd04;p=oweals%2Fopenssl.git Fix VC++ warning (change had already been made to other branches). --- diff --git a/ssl/d1_both.c b/ssl/d1_both.c index 3b9c7567b5..0a5c08d713 100644 --- a/ssl/d1_both.c +++ b/ssl/d1_both.c @@ -988,7 +988,7 @@ dtls1_retransmit_buffered_messages(SSL *s) { frag = (hm_fragment *)item->data; if ( dtls1_retransmit_message(s, - dtls1_get_queue_priority(frag->msg_header.seq, frag->msg_header.is_ccs), + (unsigned short)dtls1_get_queue_priority(frag->msg_header.seq, frag->msg_header.is_ccs), 0, &found) <= 0 && found) { fprintf(stderr, "dtls1_retransmit_message() failed\n");