Skip to content

Commit

Permalink
Merge pull request #758 from 7ym0n/gvmd-8.0
Browse files Browse the repository at this point in the history
fixed start task failed
  • Loading branch information
mattmundell committed Sep 27, 2019
2 parents de5552a + 002907e commit 9471c26
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -32,6 +32,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Fix columnless search phrase filter keywords with quotes [#716](https://github.com/greenbone/gvmd/pull/716)
- Fix issues importing results or getting them from slaves if they contain "%s" [#724](https://github.com/greenbone/gvmd/pull/724)
- A possible database migration issue from GVMd-7 to GVMd-8 has been addressed [#742](https://github.com/greenbone/gvmd/pull/742)
- Fix escaping that was preventing start_task from running [#758](https://github.com/greenbone/gvmd/pull/758)

### Removed

Expand Down
2 changes: 1 addition & 1 deletion src/manage_sql.c
Expand Up @@ -38041,7 +38041,7 @@ init_otp_pref_iterator (iterator_t* iterator,
" WHERE config_preferences.config = %llu"
" AND config_preferences.type = '%s'"
" AND (config_preferences.name = nvt_preferences.name"
" OR config_preferences.name LIKE 'timeout.%')"
" OR config_preferences.name LIKE 'timeout.%%')"
" AND config_preferences.name != 'max_checks'"
" AND config_preferences.name != 'max_hosts'"
" UNION"
Expand Down

0 comments on commit 9471c26

Please sign in to comment.