Skip to content

Commit 8884186

Browse files
committed
fix client printouts
1 parent eb85f18 commit 8884186

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/wh_client_crypto.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3110,7 +3110,7 @@ static int _xferSha256BlockAndUpdateDigest(whClientContext* ctx,
31103110
/* wolfCrypt allows positive error codes on success in some scenarios */
31113111
if (ret >= 0) {
31123112
#ifdef DEBUG_CRYPTOCB_VERBOSE
3113-
printf("[client] ERROR Client SHA256 Res recv: ret=%d", ret);
3113+
printf("[client] Client SHA256 Res recv: ret=%d", ret);
31143114
#endif /* DEBUG_CRYPTOCB_VERBOSE */
31153115
/* Store the received intermediate hash in the sha256
31163116
* context and indicate the field is now valid and
@@ -3399,7 +3399,7 @@ static int _xferSha224BlockAndUpdateDigest(whClientContext* ctx,
33993399
/* wolfCrypt allows positive error codes on success in some scenarios */
34003400
if (ret >= 0) {
34013401
#ifdef DEBUG_CRYPTOCB_VERBOSE
3402-
printf("[client] ERROR Client SHA224 Res recv: ret=%d", ret);
3402+
printf("[client] Client SHA224 Res recv: ret=%d", ret);
34033403
#endif /* DEBUG_CRYPTOCB_VERBOSE */
34043404
/* Store the received intermediate hash in the sha224
34053405
* context and indicate the field is now valid and
@@ -3655,7 +3655,7 @@ static int _xferSha384BlockAndUpdateDigest(whClientContext* ctx,
36553655
/* wolfCrypt allows positive error codes on success in some scenarios */
36563656
if (ret >= 0) {
36573657
#ifdef DEBUG_CRYPTOCB_VERBOSE
3658-
printf("[client] ERROR Client SHA384 Res recv: ret=%d", ret);
3658+
printf("[client] Client SHA384 Res recv: ret=%d", ret);
36593659
#endif /* DEBUG_CRYPTOCB_VERBOSE */
36603660
/* Store the received intermediate hash in the sha384
36613661
* context and indicate the field is now valid and
@@ -3910,7 +3910,7 @@ static int _xferSha512BlockAndUpdateDigest(whClientContext* ctx,
39103910
/* wolfCrypt allows positive error codes on success in some scenarios */
39113911
if (ret >= 0) {
39123912
#ifdef DEBUG_CRYPTOCB_VERBOSE
3913-
printf("[client] ERROR Client SHA512 Res recv: ret=%d", ret);
3913+
printf("[client] Client SHA512 Res recv: ret=%d", ret);
39143914
printf("[client] hashType: %d\n", sha512->hashType);
39153915
#endif /* DEBUG_CRYPTOCB_VERBOSE */
39163916
/* Store the received intermediate hash in the sha512

0 commit comments

Comments
 (0)