From: Lutz Jänicke Date: Mon, 26 May 2008 06:21:13 +0000 (+0000) Subject: Reword comment to be much shorter to stop other people from complaining X-Git-Tag: OpenSSL_0_9_8k^2~389 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=17a4a4dff846def98532dd3a90384e0af1bebe23 Reword comment to be much shorter to stop other people from complaining about "overcommenting". --- diff --git a/ssl/ssl_rsa.c b/ssl/ssl_rsa.c index a7721d05e3..27113eba50 100644 --- a/ssl/ssl_rsa.c +++ b/ssl/ssl_rsa.c @@ -708,11 +708,7 @@ int SSL_CTX_use_certificate_chain_file(SSL_CTX *ctx, const char *file) int ret=0; X509 *x=NULL; - ERR_clear_error(); /* This function needs to check the error stack - even if the return code(s) of called functions - indicate success. - The error stack must therefore be cleared - before starting. */ + ERR_clear_error(); /* clear error stack for SSL_CTX_use_certificate() */ in=BIO_new(BIO_s_file_internal()); if (in == NULL)