net-mgmt/nagios-check_relayd_status: minor style fixes in the script

Git rid of UTF-8 apostrophe and contraction altogether (it is spelled
as "cannot" elsewhere throughout the code) and whack EOL whitespace.
This commit is contained in:
Alexey Dokuchaev 2023-05-10 09:59:32 +00:00
parent 39e0e692d6
commit 9d49b37d57

View File

@ -126,7 +126,7 @@ my @execute = ($command, $parameter);
# make unbuffered output # make unbuffered output
$|=1; $|=1;
open STDERR, ">&STDOUT" or die "Cant dup STDOUT: $!"; open STDERR, ">&STDOUT" or die "Cannot dup STDOUT: $!";
eval { eval {
my @return = split(/\n/, `@execute`) my @return = split(/\n/, `@execute`)