From: Ben Laurie Date: Sat, 12 Dec 2009 15:57:53 +0000 (+0000) Subject: Missing error code. X-Git-Tag: OpenSSL_1_0_0-beta5~51 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=43a107026dea3fef3405b6b1a23c4105014cfeae;p=oweals%2Fopenssl.git Missing error code. --- diff --git a/ssl/ssl.h b/ssl/ssl.h index ffeff09a00..fff0684ce5 100644 --- a/ssl/ssl.h +++ b/ssl/ssl.h @@ -2154,6 +2154,7 @@ void ERR_load_SSL_strings(void); #define SSL_R_NO_PRIVATE_KEY_ASSIGNED 190 #define SSL_R_NO_PROTOCOLS_AVAILABLE 191 #define SSL_R_NO_PUBLICKEY 192 +#define SSL_R_NO_RENEGOTIATION 339 #define SSL_R_NO_REQUIRED_DIGEST 324 #define SSL_R_NO_SHARED_CIPHER 193 #define SSL_R_NO_VERIFY_CALLBACK 194 diff --git a/ssl/ssl_err.c b/ssl/ssl_err.c index 7540bd4ebd..f47e4a5099 100644 --- a/ssl/ssl_err.c +++ b/ssl/ssl_err.c @@ -414,6 +414,7 @@ static ERR_STRING_DATA SSL_str_reasons[]= {ERR_REASON(SSL_R_NO_PRIVATE_KEY_ASSIGNED),"no private key assigned"}, {ERR_REASON(SSL_R_NO_PROTOCOLS_AVAILABLE),"no protocols available"}, {ERR_REASON(SSL_R_NO_PUBLICKEY) ,"no publickey"}, +{ERR_REASON(SSL_R_NO_RENEGOTIATION) ,"no renegotiation"}, {ERR_REASON(SSL_R_NO_REQUIRED_DIGEST) ,"digest requred for handshake isn't computed"}, {ERR_REASON(SSL_R_NO_SHARED_CIPHER) ,"no shared cipher"}, {ERR_REASON(SSL_R_NO_VERIFY_CALLBACK) ,"no verify callback"},