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

Fix warnings when more pedantic "debuge-steve32" target is used.

parent 138f2043
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -63,11 +63,11 @@
 * 1.1 added norm_expand_bits
 * 1.0 First working version
 */
#include "des_locl.h"
#ifdef OPENSSL_FIPS
#include <openssl/fips.h>
#endif

#include "des_locl.h"

OPENSSL_IMPLEMENT_GLOBAL(int,DES_check_key);	/* defaults to false */

+2 −2
Original line number Diff line number Diff line
@@ -234,8 +234,8 @@ padlock_bind_fn(ENGINE *e, const char *id)
	return 1;
}

IMPLEMENT_DYNAMIC_CHECK_FN ();
IMPLEMENT_DYNAMIC_BIND_FN (padlock_bind_fn);
IMPLEMENT_DYNAMIC_CHECK_FN ()
IMPLEMENT_DYNAMIC_BIND_FN (padlock_bind_fn)
#endif /* DYNAMIC_ENGINE */

/* ===== Here comes the "real" engine ===== */
+1 −0
Original line number Diff line number Diff line
@@ -65,6 +65,7 @@
#include <ctype.h>
#include <openssl/aes.h>
#include <openssl/evp.h>
#include <openssl/bn.h>

#include <openssl/err.h>
#include "e_os.h"
+1 −0
Original line number Diff line number Diff line
@@ -66,6 +66,7 @@
#include <ctype.h>
#include <openssl/des.h>
#include <openssl/evp.h>
#include <openssl/bn.h>

#include <openssl/err.h>
#include "e_os.h"
+2 −1
Original line number Diff line number Diff line
@@ -57,7 +57,8 @@
 */

#include <string.h>
#include <openssl/dsa.h>
#include <openssl/bn.h>
#include <openssl/dh.h>

/* Minimal FIPS versions of FIPS_dh_new() and FIPS_dh_free(): to
 * reduce external dependencies. 
Loading