提交 c8632017 编写于 作者: R Richard Levitte

Remove warnings.

上级 cb21d001
......@@ -1336,7 +1336,7 @@ bad:
j=x->cert_info->serialNumber->length;
p=(char *)x->cert_info->serialNumber->data;
if(strlen(outdir) >= (j ? BSIZE-j*2-6 : BSIZE-8))
if(strlen(outdir) >= (size_t)(j ? BSIZE-j*2-6 : BSIZE-8))
{
BIO_printf(bio_err,"certificate file name too long\n");
goto err;
......
......@@ -63,7 +63,7 @@ void AES_cbc_encrypt(const unsigned char *in, unsigned char *out,
const unsigned long length, const AES_KEY *key,
unsigned char *ivec, const int enc) {
int n;
unsigned long n;
unsigned long len = length;
unsigned char tmp[AES_BLOCK_SIZE];
......
......@@ -63,6 +63,7 @@
extern "C" {
#endif
#include <stddef.h>
#include <sys/types.h>
typedef struct buf_mem_st
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册