From d9b6cf1ec5e40d0b9d39c9acd8087b554393869b Mon Sep 17 00:00:00 2001 From: Simon Wilkinson Date: Mon, 11 Oct 2010 20:05:26 -0700 Subject: [PATCH] Assign a value for HX509_CMS_EV_ID_NAME 667ec8eb81e6397bcfcdc4750692df1aeb4e90d1 introduced the flag HX509_CMS_EV_ID_NAME, without defining a value for that flag. Assign a value using the next available bit. Signed-off-by: Love Hornquist Astrand --- lib/hx509/hx509.h | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/hx509/hx509.h b/lib/hx509/hx509.h index fa4aa8134..3422e822b 100644 --- a/lib/hx509/hx509.h +++ b/lib/hx509/hx509.h @@ -130,6 +130,7 @@ typedef enum { /* flags to hx509_cms_envelope_1 */ #define HX509_CMS_EV_NO_KU_CHECK 0x01 #define HX509_CMS_EV_ALLOW_WEAK 0x02 +#define HX509_CMS_EV_ID_NAME 0x04 /* flags to hx509_cms_verify_signed */ #define HX509_CMS_VS_ALLOW_DATA_OID_MISMATCH 0x01 -- 2.11.4.GIT