examples/fips_validation: fix missed version line

This patch fixes the missing version line in the response file.

Fixes: 7936501840 ("examples/fips_validation: fix version compatibility")
Cc: stable@dpdk.org

Signed-off-by: Fan Zhang <roy.fan.zhang@intel.com>
This commit is contained in:
Fan Zhang 2020-10-22 10:59:26 +01:00 committed by Akhil Goyal
parent 9fd11c1583
commit ecc3356fed

View File

@ -118,7 +118,7 @@ fips_test_parse_header(void)
if (info.nb_vec_lines)
fips_test_parse_version();
for (i = 1; i < info.nb_vec_lines; i++) {
for (i = 0; i < info.nb_vec_lines; i++) {
if (!algo_parsed) {
if (strstr(info.vec[i], "AESVS")) {
algo_parsed = 1;