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

Fix warnings.

parent 7ac7a4bc
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -4,3 +4,4 @@ opensslconf.h
Makefile.save
*.flc
semantic.cache
x86cpuid-elf.s
+1 −0
Original line number Diff line number Diff line
@@ -59,6 +59,7 @@
#include <stdio.h>
#include "cryptlib.h"
#include <openssl/asn1t.h>
#include <openssl/objects.h>

int ASN1_TYPE_get(ASN1_TYPE *a)
	{
+1 −1
Original line number Diff line number Diff line
@@ -278,7 +278,7 @@ int TS_RESP_CTX_add_md(TS_RESP_CTX *ctx, const EVP_MD *md)
	if (!ctx->mds && !(ctx->mds = sk_EVP_MD_new_null())) 
		goto err;
	/* Add the shared md, no copy needed. */
	if (!sk_EVP_MD_push(ctx->mds, md)) goto err;
	if (!sk_EVP_MD_push(ctx->mds, (EVP_MD *)md)) goto err;

	return 1;
 err: