[openssl-commits] [openssl] OpenSSL_1_0_2-stable update
Rich Salz
rsalz at openssl.org
Fri Nov 13 21:57:28 UTC 2015
The branch OpenSSL_1_0_2-stable has been updated
via f236ef27bd2ca99b3367554aa3e2fc9ca345deb5 (commit)
from 48008008af2396d6b15e10d81156d26933d30233 (commit)
- Log -----------------------------------------------------------------
commit f236ef27bd2ca99b3367554aa3e2fc9ca345deb5
Author: Graeme Perrow <graeme.perrow at sap.com>
Date: Fri Nov 13 16:56:18 2015 -0500
RT32671: wrong multiple errs TS_check_status_info
Manual cherry-pick of 0704343f138a38d3882d5af2a4ebe8821e9a8f3a.
Signed-off-by: Rich Salz <rsalz at openssl.org>
Reviewed-by: Tim Hudson <tjh at openssl.org>
-----------------------------------------------------------------------
Summary of changes:
crypto/ts/ts_rsp_verify.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/crypto/ts/ts_rsp_verify.c b/crypto/ts/ts_rsp_verify.c
index 3ce765d..da89911 100644
--- a/crypto/ts/ts_rsp_verify.c
+++ b/crypto/ts/ts_rsp_verify.c
@@ -522,7 +522,7 @@ static int TS_check_status_info(TS_RESP *response)
if (ASN1_BIT_STRING_get_bit(info->failure_info,
TS_failure_info[i].code)) {
if (!first)
- strcpy(failure_text, ",");
+ strcat(failure_text, ",");
else
first = 0;
strcat(failure_text, TS_failure_info[i].text);
More information about the openssl-commits
mailing list