Don't initialize $config{$h} entries to undef

There's no need -- if the key doesn't exist the value returned is
already `undef`.  This prevents debug output from being littered with
`undef` lines.
This commit is contained in:
Richard Hansen 2024-07-01 16:24:41 -04:00
parent e8f0358bbb
commit 18bd312216

View file

@ -2001,7 +2001,6 @@ sub init_config {
next HOST;
} else {
warning("host $h: ignoring invalid variable value '$k=$config{$h}{$k}': $@");
$conf->{$k} = undef;
}
}
}