This commit is contained in:
cathugger 2022-05-05 23:18:41 +03:00
parent 01062d70d1
commit 6438396a33
No known key found for this signature in database
GPG key ID: 9BADDA2DAF6F01A8
10 changed files with 78 additions and 32 deletions

10
main.c
View file

@ -666,16 +666,16 @@ int main(int argc,char **argv)
#ifdef PASSPHRASE
deterministic
? (wt == WT_BATCH
? worker_batch_pass
: worker_fast_pass)
? CRYPTO_NAMESPACE(worker_batch_pass)
: CRYPTO_NAMESPACE(worker_fast_pass))
:
#endif
wt == WT_BATCH
? worker_batch
? CRYPTO_NAMESPACE(worker_batch)
:
wt == WT_FAST
? worker_fast
: worker_slow,
? CRYPTO_NAMESPACE(worker_fast)
: CRYPTO_NAMESPACE(worker_slow),
tp
);
if (tret) {