Skip to content

Commit

Permalink
Fix SQL in buffer_insert.
Browse files Browse the repository at this point in the history
The columns list of the statement was missing a comma.
  • Loading branch information
timopollmeier committed Aug 2, 2019
1 parent cbc0f8e commit b25ec5d
Showing 1 changed file with 1 addition and 1 deletion.
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 b25ec5d

Please sign in to comment.