Certain flag macros were tested with #if instead if #ifdef...
authorRichard Levitte <levitte@openssl.org>
Fri, 2 Aug 2002 11:14:36 +0000 (11:14 +0000)
committerRichard Levitte <levitte@openssl.org>
Fri, 2 Aug 2002 11:14:36 +0000 (11:14 +0000)
crypto/bio/b_print.c
crypto/cryptlib.h
crypto/crypto.h
crypto/engine/hw_ubsec.c

index 90011db544960b00e702987994cf27cd6ec08ae5..fa4e350a7f93088e0723656a13dce95200123a97 100644 (file)
  * o ...                                       (for OpenSSL)
  */
 
-#if HAVE_LONG_DOUBLE
+#ifdef HAVE_LONG_DOUBLE
 #define LDOUBLE long double
 #else
 #define LDOUBLE double
index 576cbd6e35969988c485f9b69a681aaf56f55da3..815c115bfa7bb7de0a5d0a8e6c1fbc2295f06027 100644 (file)
@@ -94,7 +94,6 @@ extern "C" {
 #define HEX_SIZE(type)         ((sizeof(type)*2)
 
 /* die if we have to */
-void OpenSSLDie(const char *file,int line,const char *assertion);
 #define die(e) ((e) ? (void)0 : OpenSSLDie(__FILE__, __LINE__, #e))
 
 #ifdef  __cplusplus
index d8258fcc792029ac2552a6085a8cb939d6b5588b..dadd0e6430ea4e18be932d5b9d35d4ff48a0da80 100644 (file)
@@ -382,6 +382,9 @@ void CRYPTO_mem_leaks(struct bio_st *bio);
 /* unsigned long order, char *file, int line, int num_bytes, char *addr */
 void CRYPTO_mem_leaks_cb(void (*cb)(unsigned long, const char *, int, int, void *));
 
+/* A helper routine to use when something went really bad.  */
+void OpenSSLDie(const char *file,int line,const char *assertion);
+
 /* BEGIN ERROR CODES */
 /* The following lines are auto generated by the script mkerr.pl. Any changes
  * made after this point may be overwritten when the script is next run.
index 0f7e08c5cb114455bf0d213055862003f4ea0107..40bdd7de5e914ded39ad2613c6486b73c9c074ba 100644 (file)
@@ -92,7 +92,7 @@ static int ubsec_rsa_mod_exp(BIGNUM *r0, BIGNUM *I, RSA *rsa);
 static int ubsec_mod_exp_mont(BIGNUM *r, BIGNUM *a, const BIGNUM *p,
                const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *m_ctx);
 #ifndef OPENSSL_NO_DSA
-#if NOT_USED
+#ifdef NOT_USED
 static int ubsec_dsa_mod_exp(DSA *dsa, BIGNUM *rr, BIGNUM *a1,
                BIGNUM *p1, BIGNUM *a2, BIGNUM *p2, BIGNUM *m,
                BN_CTX *ctx, BN_MONT_CTX *in_mont);
@@ -112,7 +112,7 @@ static int ubsec_dh_compute_key(unsigned char *key,BIGNUM *pub_key,DH *dh);
 static int ubsec_dh_generate_key(DH *dh);
 #endif
 
-#if NOT_USED
+#ifdef NOT_USED
 static int ubsec_rand_bytes(unsigned char *buf, int num);
 static int ubsec_rand_status(void);
 #endif
@@ -657,7 +657,7 @@ err:
 #endif
 
 #ifndef OPENSSL_NO_DSA
-#if NOT_USED
+#ifdef NOT_USED
 static int ubsec_dsa_mod_exp(DSA *dsa, BIGNUM *rr, BIGNUM *a1,
                BIGNUM *p1, BIGNUM *a2, BIGNUM *p2, BIGNUM *m,
                BN_CTX *ctx, BN_MONT_CTX *in_mont)