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:08 -0500
commitf236ef27bd2ca99b3367554aa3e2fc9ca345deb5 (patch)
tree874858638867157db701613fdefd15e412632ed0
parent48008008af2396d6b15e10d81156d26933d30233 (diff)
RT32671: wrong multiple errs TS_check_status_info
Manual cherry-pick of 0704343f138a38d3882d5af2a4ebe8821e9a8f3a. Signed-off-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Tim Hudson <tjh@openssl.org>
-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 3ce765dfa1..da8991173c 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);