Skip to content

Commit 077ac68

Browse files
author
Andras Fekete
committed
Avoid the word "WARNING" in messages
1 parent a698039 commit 077ac68

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

pkcs7/signedData-stream.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ static int signedData_verify(byte* in, word32 inSz, byte* cert,
200200

201201
if (ret < 0) {
202202
if (ret == PKCS7_SIGNEEDS_CHECK) {
203-
printf("WARNING: Parsed through bundle but no certificates found to"
203+
printf("ATTENTION: Parsed through bundle but no certificates found to"
204204
" verify signature with\n");
205205
}
206206
else {

pkcs7/signedData.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ static int signedData_verify(byte* in, word32 inSz, byte* cert,
255255
if (ret < 0 || (pkcs7->contentSz != sizeof(data)) ||
256256
(XMEMCMP(pkcs7->content, data, pkcs7->contentSz) != 0)) {
257257
if (ret == PKCS7_SIGNEEDS_CHECK) {
258-
printf("WARNING: Parsed through bundle but no certificates found to"
258+
printf("ATTENTION: Parsed through bundle but no certificates found to"
259259
" verify signature with\n");
260260
}
261261
else {

0 commit comments

Comments
 (0)