Fix test to match context against question keyword.
This commit is contained in:
parent
81bd2e3065
commit
7150f2f5c5
@ -552,7 +552,7 @@ void cli_question(Arguments __unused *args, Operation *operation) {
|
|||||||
case MPKeyPurposeRecovery:
|
case MPKeyPurposeRecovery:
|
||||||
for (size_t q = 0; !operation->question && q < operation->site->questions_count; ++q)
|
for (size_t q = 0; !operation->question && q < operation->site->questions_count; ++q)
|
||||||
if ((!operation->keyContext && !strlen( (&operation->site->questions[q])->keyword )) ||
|
if ((!operation->keyContext && !strlen( (&operation->site->questions[q])->keyword )) ||
|
||||||
(operation->keyContext && strcmp( (&operation->site->questions[q])->keyword, operation->keyContext ) != 0))
|
(operation->keyContext && strcmp( (&operation->site->questions[q])->keyword, operation->keyContext ) == 0))
|
||||||
operation->question = &operation->site->questions[q];
|
operation->question = &operation->site->questions[q];
|
||||||
|
|
||||||
// If no question from mpsites, create a new one.
|
// If no question from mpsites, create a new one.
|
||||||
|
Loading…
Reference in New Issue
Block a user