From 07eb6eaa7b0cdf628fef3f5b6a91a766552aae5a Mon Sep 17 00:00:00 2001 From: Philipp Eder Date: Fri, 14 Feb 2025 12:42:50 +0000 Subject: [PATCH] Change: changes default from OSPD to openvas --- rust/src/openvasd/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/src/openvasd/config.rs b/rust/src/openvasd/config.rs index 35e1fd644..a783fa661 100644 --- a/rust/src/openvasd/config.rs +++ b/rust/src/openvasd/config.rs @@ -72,7 +72,7 @@ pub enum ScannerType { impl Default for ScannerType { fn default() -> Self { - Self::OSPD + Self::Openvas } }