Fix a shadowed variable declaration warning picked up by Travis
Rename "read" to "readbytes" Reviewed-by: Rich Salz <rsalz@openssl.org>
This commit is contained in:
parent
8d2b1819ef
commit
02ba18a63e
1 changed files with 3 additions and 3 deletions
|
@ -336,7 +336,7 @@ int dtls1_process_buffered_records(SSL *s)
|
||||||
* none of our business
|
* none of our business
|
||||||
*/
|
*/
|
||||||
int dtls1_read_bytes(SSL *s, int type, int *recvd_type, unsigned char *buf,
|
int dtls1_read_bytes(SSL *s, int type, int *recvd_type, unsigned char *buf,
|
||||||
size_t len, int peek, size_t *read)
|
size_t len, int peek, size_t *readbytes)
|
||||||
{
|
{
|
||||||
int al, i, j, iret;
|
int al, i, j, iret;
|
||||||
size_t ret, n;
|
size_t ret, n;
|
||||||
|
@ -362,7 +362,7 @@ int dtls1_read_bytes(SSL *s, int type, int *recvd_type, unsigned char *buf,
|
||||||
ret = have_handshake_fragment(s, type, buf, len);
|
ret = have_handshake_fragment(s, type, buf, len);
|
||||||
if (ret > 0) {
|
if (ret > 0) {
|
||||||
*recvd_type = SSL3_RT_HANDSHAKE;
|
*recvd_type = SSL3_RT_HANDSHAKE;
|
||||||
*read = ret;
|
*readbytes = ret;
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -548,7 +548,7 @@ int dtls1_read_bytes(SSL *s, int type, int *recvd_type, unsigned char *buf,
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
*read = n;
|
*readbytes = n;
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue