Skip to content

Commit

Permalink
Exclude timeout in update_nvti_cache
Browse files Browse the repository at this point in the history
  • Loading branch information
mattmundell committed Oct 17, 2023
1 parent 84eefa9 commit 2a4054a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/manage_sql.c
Original file line number Diff line number Diff line change
Expand Up @@ -15633,7 +15633,8 @@ update_nvti_cache ()

init_iterator (&prefs,
"SELECT pref_id, pref_nvt, pref_name, value"
" FROM nvt_preferences;");
" FROM nvt_preferences"
" WHERE NOT (pref_type = 'entry' AND pref_name = 'Timeout')");

while (next (&nvts))
{
Expand Down

0 comments on commit 2a4054a

Please sign in to comment.