From c930ee52a4b0853fa42f0ca5942e59a68c6bca80 Mon Sep 17 00:00:00 2001 From: Tomas Mraz Date: Wed, 17 Jan 2024 17:25:35 +0100 Subject: [PATCH] Fix reason value collision for CMP_R_UNEXPECTED_SENDER Reviewed-by: Hugo Landau Reviewed-by: Neil Horman (Merged from https://github.com/openssl/openssl/pull/23323) --- crypto/err/openssl.txt | 2 +- include/openssl/cmperr.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crypto/err/openssl.txt b/crypto/err/openssl.txt index b999ec3363..8d302e07d6 100644 --- a/crypto/err/openssl.txt +++ b/crypto/err/openssl.txt @@ -278,7 +278,7 @@ CMP_R_UNEXPECTED_PKIBODY:133:unexpected pkibody CMP_R_UNEXPECTED_PKISTATUS:185:unexpected pkistatus CMP_R_UNEXPECTED_POLLREQ:105:unexpected pollreq CMP_R_UNEXPECTED_PVNO:153:unexpected pvno -CMP_R_UNEXPECTED_SENDER:104:unexpected sender +CMP_R_UNEXPECTED_SENDER:197:unexpected sender CMP_R_UNKNOWN_ALGORITHM_ID:134:unknown algorithm id CMP_R_UNKNOWN_CERT_TYPE:135:unknown cert type CMP_R_UNKNOWN_PKISTATUS:186:unknown pkistatus diff --git a/include/openssl/cmperr.h b/include/openssl/cmperr.h index 111d4c9e2f..aba6a9352e 100644 --- a/include/openssl/cmperr.h +++ b/include/openssl/cmperr.h @@ -104,7 +104,7 @@ # define CMP_R_UNEXPECTED_PKISTATUS 185 # define CMP_R_UNEXPECTED_POLLREQ 105 # define CMP_R_UNEXPECTED_PVNO 153 -# define CMP_R_UNEXPECTED_SENDER 104 +# define CMP_R_UNEXPECTED_SENDER 197 # define CMP_R_UNKNOWN_ALGORITHM_ID 134 # define CMP_R_UNKNOWN_CERT_TYPE 135 # define CMP_R_UNKNOWN_PKISTATUS 186