Skip to content

Commit

Permalink
Switched contains back to eq
Browse files Browse the repository at this point in the history
  • Loading branch information
abkarcher committed Jul 2, 2020
1 parent fa73a80 commit 39f4231
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/acvp_operating_env.c
Original file line number Diff line number Diff line change
Expand Up @@ -1895,7 +1895,7 @@ static ACVP_RESULT query_vendor(ACVP_CTX *ctx,
ctx->path_segment, "vendors?");

if (vendor->name) {
rv = acvp_kv_list_append(&parameters, "name[0]=contains:", vendor->name);
rv = acvp_kv_list_append(&parameters, "name[0]=eq:", vendor->name);
if (ACVP_SUCCESS != rv) {
ACVP_LOG_ERR("Failed acvp_kv_list_append()");
goto end;
Expand Down

0 comments on commit 39f4231

Please sign in to comment.