1
0
mirror of https://github.com/speed47/spectre-meltdown-checker synced 2024-07-04 18:35:55 +02:00

fix: typo introduced by #483, fixes #486

This commit is contained in:
Stéphane Lesimple 2024-05-18 12:56:07 +02:00
parent d70e4c2974
commit bd0c7c94b5

View File

@ -1155,7 +1155,7 @@ update_fwdb()
_version=$(( _version )) _version=$(( _version ))
_version=$(printf "%08X" "$_version") _version=$(printf "%08X" "$_version")
# ensure the official Intel DB always has precedence over mcedb, even if mcedb has seen a more recent fw # ensure the official Intel DB always has precedence over mcedb, even if mcedb has seen a more recent fw
sqlite3 "$mcedb_tmp" "DELETE FROM \"Intel\" WHERE \"origin\" != \"intel\" AND \"cpuid\" = '$_cpuid';" sqlite3 "$mcedb_tmp" "DELETE FROM \"Intel\" WHERE \"origin\" != 'intel' AND \"cpuid\" = '$_cpuid';"
# then insert our version # then insert our version
sqlite3 "$mcedb_tmp" "INSERT INTO \"Intel\" (\"origin\",\"cpuid\",\"pfmask\",\"version\",\"yyyymmdd\") VALUES ('intel','$_cpuid','$_pfmask','$_version','$_date');" sqlite3 "$mcedb_tmp" "INSERT INTO \"Intel\" (\"origin\",\"cpuid\",\"pfmask\",\"version\",\"yyyymmdd\") VALUES ('intel','$_cpuid','$_pfmask','$_version','$_date');"
done done