summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGraeme Perrow <graeme.perrow@sap.com>2015-11-13 16:56:18 -0500
committerRich Salz <rsalz@openssl.org>2015-11-13 16:57:41 -0500
commitb77390a2ff1d8c707ea5aad4bd30cedbccedee5b (patch)
treeb4eebbe8b7179c3e34a2cf5dcafc3a33bfb8c336
parent78b9d13474e843205307da96ef348868fe6d71bb (diff)
RT32671: wrong multiple errs TS_check_status_info
Signed-off-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Tim Hudson <tjh@openssl.org> (cherry picked from commit f236ef27bd2ca99b3367554aa3e2fc9ca345deb5)
-rw-r--r--crypto/ts/ts_rsp_verify.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/ts/ts_rsp_verify.c b/crypto/ts/ts_rsp_verify.c
index 32b4d9923f..1a3a7c5248 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);