Commit d7ecd422 authored by Dr. Stephen Henson's avatar Dr. Stephen Henson
Browse files

Fix warnings properly this time ;-)

parent 41b76195
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -130,7 +130,7 @@ static int ssl2_read_internal(SSL *s, void *buf, int len, int peek)
	unsigned char mac[MAX_MAC_SIZE];
	unsigned char *p;
	int i;
	unsigned int mac_size;
	int mac_size;

 ssl2_read_again:
	if (SSL_in_init(s) && !s->in_handshake)
@@ -263,7 +263,7 @@ static int ssl2_read_internal(SSL *s, void *buf, int len, int peek)
		/* added a check for length > max_size in case
		 * encryption was not turned on yet due to an error */
		if ((!s->s2->clear_text) &&
			(s->s2->rlength >= mac_size))
			(s->s2->rlength >= (unsigned int)mac_size))
			{
			ssl2_enc(s,0);
			s->s2->ract_data_length-=mac_size;
+3 −3
Original line number Diff line number Diff line
@@ -805,8 +805,8 @@ int tls1_final_finish_mac(SSL *s,
		{
		if (mask & s->s3->tmp.new_cipher->algorithm2)
			{
			unsigned int hashsize = EVP_MD_size(md);
			if (hashsize < 0 || hashsize > (sizeof buf - (size_t)(q-buf)))
			int hashsize = EVP_MD_size(md);
			if (hashsize < 0 || hashsize > (int)(sizeof buf - (size_t)(q-buf)))
				{
				/* internal error: 'buf' is too small for this cipersuite! */
				err = 1;
@@ -815,7 +815,7 @@ int tls1_final_finish_mac(SSL *s,
				{
				EVP_MD_CTX_copy_ex(&ctx,s->s3->handshake_dgst[idx]);
				EVP_DigestFinal_ex(&ctx,q,&i);
				if (i != hashsize) /* can't really happen */
				if (i != (unsigned int)hashsize) /* can't really happen */
					err = 1;
				q+=i;
				}