Skip to content

Commit 34b3013

Browse files
committed
Fix for conflict for stat variable name.
1 parent e5297c8 commit 34b3013

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

wolfcrypt/src/port/intel/quickassist.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2842,7 +2842,7 @@ int IntelQaEcdsaVerify(WC_ASYNC_DEV* dev, WC_BIGINT* m,
28422842
WC_BIGINT* r, WC_BIGINT* s,
28432843
WC_BIGINT* a, WC_BIGINT* b,
28442844
WC_BIGINT* q, WC_BIGINT* n,
2845-
WC_BIGINT* xg, WC_BIGINT* yg, int* stat)
2845+
WC_BIGINT* xg, WC_BIGINT* yg, int* pVerifyStatus)
28462846
{
28472847
int ret, retryCount = 0;
28482848
CpaStatus status = CPA_STATUS_SUCCESS;
@@ -2878,7 +2878,7 @@ int IntelQaEcdsaVerify(WC_ASYNC_DEV* dev, WC_BIGINT* m,
28782878
}
28792879

28802880
/* store info needed for output */
2881-
dev->qat.op.ecc_verify.stat = stat;
2881+
dev->qat.op.ecc_verify.stat = pVerifyStatus;
28822882
IntelQaOpInit(dev, IntelQaEcdsaVerifyFree);
28832883

28842884
/* Perform ECDSA verify */

0 commit comments

Comments
 (0)