Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make test_alive_hosts_only (Boreas) feature the new default #503

Merged
merged 2 commits into from
May 19, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Add function to find and return a host from a host list. [490](https://github.com/greenbone/gvm-libs/pull/490)

### Changed
- Make test_alive_hosts_only (Boreas) feature the new default. [503](https://github.com/greenbone/gvm-libs/pull/503)

### Fixed
- Unify GLib log domains [#479](https://github.com/greenbone/gvm-libs/pull/479)
- Fix double free. [#499](https://github.com/greenbone/gvm-libs/pull/499)
Expand Down
2 changes: 1 addition & 1 deletion base/prefs.c
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ prefs_init (void)
prefs_set ("drop_privileges", "no");
prefs_set ("report_host_details", "yes");
prefs_set ("vendor_version", "\0");
prefs_set ("test_alive_hosts_only", "no");
prefs_set ("test_alive_hosts_only", "yes");
prefs_set ("debug_tls", "0");
prefs_set ("allow_simultaneous_ips", "yes");
}
Expand Down