From 505ff0514d2e05539a0bab7dcfc2ef36b659215e Mon Sep 17 00:00:00 2001 From: Juan Jose Nicola Date: Mon, 8 Jun 2020 17:16:05 +0200 Subject: [PATCH] Remove parallel from target options --- CHANGELOG.md | 3 +++ osp/osp.c | 2 -- osp/osp.h | 1 - 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 02d94bdd3..9d650afa9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Fix is_cidr6_block() and is_short_range_network(). [#337](https://github.com/greenbone/gvm-libs/pull/337) - Fix S/MIME keylist and improve error handling [#345](https://github.com/greenbone/gvm-libs/pull/345) +### Removed +- Remove parallel from target options [#347](https://github.com/greenbone/gvm-libs/pull/347) + [20.8]: https://github.com/greenbone/gvm-libs/compare/gvm-libs-11.0...master ## [11.0.1] (unreleased) diff --git a/osp/osp.c b/osp/osp.c index 02f8d07c5..8d27a054b 100644 --- a/osp/osp.c +++ b/osp/osp.c @@ -965,8 +965,6 @@ osp_start_scan_ext (osp_connection_t *connection, osp_start_scan_opts_t opts, xml = g_string_sized_new (10240); g_string_append (xml, "", opts.scan_id ? opts.scan_id : ""); g_string_append (xml, ""); diff --git a/osp/osp.h b/osp/osp.h index 5753a7321..651830c8d 100644 --- a/osp/osp.h +++ b/osp/osp.h @@ -121,7 +121,6 @@ typedef struct GSList *vt_groups; ///< VT groups to use for the scan. GSList *vts; ///< Single VTs to use for the scan. GHashTable *scanner_params; ///< Table of scanner parameters. - int parallel; ///< Number of parallel scans. const char *scan_id; ///< UUID to set for scan, null otherwise. } osp_start_scan_opts_t;