Commit 41e455bf authored by Nils Larsch's avatar Nils Larsch
Browse files

test, remove unnecessary const cast

parent 59b6836a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -153,7 +153,7 @@ static int md_write(BIO *b, const char *in, int inl)
		{
		if (ret > 0)
			{
			EVP_DigestUpdate(ctx,(unsigned char *)in,
			EVP_DigestUpdate(ctx,(const unsigned char *)in,
				(unsigned int)ret);
			}
		}
+1 −1
Original line number Diff line number Diff line
@@ -95,7 +95,7 @@ static int null_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
	     const unsigned char *in, unsigned int inl)
	{
	if (in != out)
		memcpy((char *)out,(char *)in,(int)inl);
		memcpy((char *)out,(const char *)in,(size_t)inl);
	return 1;
	}