diff --git a/CHANGELOG.md b/CHANGELOG.md index 831ce93ec5..8bd3c5ab26 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ### Added - Added CVSS date to NVT details [#2802](https://github.com/greenbone/gsa/pull/2802) -- Add option to allow to scan simultaneous IPs to targets [#2779](https://github.com/greenbone/gsa/pull/2779) +- Add option to allow to scan simultaneous IPs to targets + [#2779](https://github.com/greenbone/gsa/pull/2779), + [#2813](https://github.com/greenbone/gsa/pull/2813) - Added CVSS origin to NVT details [#2588](https://github.com/greenbone/gsa/pull/2588) - Added the CVSS v3.1 BaseScore calculator to the `/cvsscalculator` page in the Help section. [#2536](https://github.com/greenbone/gsa/pull/2536) diff --git a/gsad/src/gsad_gmp.c b/gsad/src/gsad_gmp.c index 7dd4d796e0..852ce73629 100644 --- a/gsad/src/gsad_gmp.c +++ b/gsad/src/gsad_gmp.c @@ -5313,7 +5313,7 @@ create_target_gmp (gvm_connection_t *connection, credentials_t *credentials, hosts_filter = params_value (params, "hosts_filter"); file = params_value (params, "file"); exclude_file = params_value (params, "exclude_file"); - allow_simultaneous_ips = params_value_bool (params, "allow_simultaneous_ips"); + allow_simultaneous_ips = params_value (params, "allow_simultaneous_ips"); CHECK_VARIABLE_INVALID (name, "Create Target"); CHECK_VARIABLE_INVALID (target_source, "Create Target") @@ -6284,7 +6284,7 @@ save_target_gmp (gvm_connection_t *connection, credentials_t *credentials, target_smb_credential = params_value (params, "smb_credential_id"); target_esxi_credential = params_value (params, "esxi_credential_id"); target_snmp_credential = params_value (params, "snmp_credential_id"); - allow_simultaneous_ips = params_value_bool (params, "allow_simultaneous_ips"); + allow_simultaneous_ips = params_value (params, "allow_simultaneous_ips"); CHECK_VARIABLE_INVALID (target_source, "Save Target"); CHECK_VARIABLE_INVALID (target_exclude_source, "Save Target");