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

Move X509_LU_RETRY, X509_LU_FAIL



X509_LU_RETRY and X509_LU_FAIL are not X509_OBJECT types so don't include
them in the enum.

Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
parent fc9d1ef3
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -45,10 +45,12 @@ certificate chain.
*/

typedef enum {
    X509_LU_RETRY = -1,
    X509_LU_FAIL, X509_LU_X509, X509_LU_CRL
    X509_LU_NONE = 0,
    X509_LU_X509, X509_LU_CRL
} X509_LOOKUP_TYPE;

#define X509_LU_RETRY   -1
#define X509_LU_FAIL    0

DEFINE_STACK_OF(X509_LOOKUP)
DEFINE_STACK_OF(X509_OBJECT)