Skip to content

Commit

Permalink
Fix error code collision
Browse files Browse the repository at this point in the history
Reviewed-by: Neil Horman <nhorman@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from #23360)
  • Loading branch information
hlandau committed Feb 8, 2024
1 parent 2cd09e0 commit 07e66f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crypto/err/openssl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1401,7 +1401,7 @@ SSL_R_EXTRA_DATA_IN_MESSAGE:153:extra data in message
SSL_R_EXT_LENGTH_MISMATCH:163:ext length mismatch
SSL_R_FAILED_TO_GET_PARAMETER:316:failed to get parameter
SSL_R_FAILED_TO_INIT_ASYNC:405:failed to init async
SSL_R_FEATURE_NEGOTIATION_NOT_COMPLETE:412:feature negotiation not complete
SSL_R_FEATURE_NEGOTIATION_NOT_COMPLETE:417:feature negotiation not complete
SSL_R_FEATURE_NOT_RENEGOTIABLE:413:feature not renegotiable
SSL_R_FRAGMENTED_CLIENT_HELLO:401:fragmented client hello
SSL_R_GOT_A_FIN_BEFORE_A_CCS:154:got a fin before a ccs
Expand Down
2 changes: 1 addition & 1 deletion include/openssl/sslerr.h
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@
# define SSL_R_EXT_LENGTH_MISMATCH 163
# define SSL_R_FAILED_TO_GET_PARAMETER 316
# define SSL_R_FAILED_TO_INIT_ASYNC 405
# define SSL_R_FEATURE_NEGOTIATION_NOT_COMPLETE 412
# define SSL_R_FEATURE_NEGOTIATION_NOT_COMPLETE 417
# define SSL_R_FEATURE_NOT_RENEGOTIABLE 413
# define SSL_R_FRAGMENTED_CLIENT_HELLO 401
# define SSL_R_GOT_A_FIN_BEFORE_A_CCS 154
Expand Down

0 comments on commit 07e66f3

Please sign in to comment.