More VC++ pickiness. (destest.c doesn't have a "return" and the usual
signed/unsigned stuff in s3_pkt.c) Submitted by: Reviewed by: PR:
This commit is contained in:
parent
7dce5a727a
commit
4621a00063
@ -796,6 +796,7 @@ plain[8+4], plain[8+5], plain[8+6], plain[8+7]);
|
|||||||
}
|
}
|
||||||
printf("\n");
|
printf("\n");
|
||||||
exit(err);
|
exit(err);
|
||||||
|
return(err); /* Never reached, but keeps compilers happy */
|
||||||
}
|
}
|
||||||
|
|
||||||
static char *pt(unsigned char *p)
|
static char *pt(unsigned char *p)
|
||||||
|
@ -706,8 +706,8 @@ static int ssl3_write_pending(SSL *s, int type, const unsigned char *buf,
|
|||||||
*/
|
*/
|
||||||
int ssl3_read_bytes(SSL *s, int type, unsigned char *buf, int len)
|
int ssl3_read_bytes(SSL *s, int type, unsigned char *buf, int len)
|
||||||
{
|
{
|
||||||
int al,i,j,ret;
|
int al,j,ret;
|
||||||
unsigned int n;
|
unsigned int i,n;
|
||||||
SSL3_RECORD *rr;
|
SSL3_RECORD *rr;
|
||||||
void (*cb)()=NULL;
|
void (*cb)()=NULL;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user