Skip to content

Commit

Permalink
Merge pull request #659 from timopollmeier/buffer_insert-fix
Browse files Browse the repository at this point in the history
Fix SQL in buffer_insert.
  • Loading branch information
mattmundell authored Aug 2, 2019
2 parents cbc0f8e + 6bea64c commit 5afef71
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
### Fixed
- Fix iCalendar recurrence and timezone handling [#654](https://github.com/greenbone/gvmd/pull/654)
- Fix issues with some scheduled tasks by using iCalendar more instead of old period fields [#656](https://github.com/greenbone/gvmd/pull/655)
- Fix an issue in getting the reports from GMP scanners [#659](https://github.com/greenbone/gvmd/pull/659)

### Removed
- The handling of NVT updates via OTP has been removed. [#575](https://github.com/greenbone/gvmd/pull/575)
Expand Down
2 changes: 1 addition & 1 deletion src/manage_sql.c
Original file line number Diff line number Diff line change
Expand Up @@ -48519,7 +48519,7 @@ buffer_insert (GString *buffer, task_t task, const char* host,
"INSERT into results"
" (owner, date, task, host, hostname, port,"
" nvt, nvt_version, severity, type,"
" description, uuid, qod, qod_type, result_nvt"
" description, uuid, qod, qod_type, result_nvt,"
" report)"
" VALUES");
g_string_append_printf (buffer,
Expand Down

0 comments on commit 5afef71

Please sign in to comment.