Remove RSA_FLAG_SIGN_VER flag.
[openssl.git] / crypto / rsa / rsa_depr.c
index 042b2b72d5edd6f3a0818e1c833f456326c7ed19..5bd02758565ca333dc4c2b50a94c72542768c40a 100644 (file)
@@ -60,7 +60,7 @@
 
 #include <stdio.h>
 #include <time.h>
-#include "cryptlib.h"
+#include "internal/cryptlib.h"
 #include <openssl/bn.h>
 #include <openssl/rsa.h>
 
@@ -78,7 +78,7 @@ RSA *RSA_generate_key(int bits, unsigned long e_value,
     RSA *rsa = RSA_new();
     BIGNUM *e = BN_new();
 
-    if (!cb || !rsa || !e)
+    if (cb == NULL || rsa == NULL || e == NULL)
         goto err;
 
     /*