mirror of
https://github.com/isc-projects/bind9.git
synced 2026-03-12 05:32:42 -04:00
Merge branch 'michal/silence-a-perl-warning-output-by-stop.pl-v9_14' into 'v9_14'
[v9_14] Silence a Perl warning output by stop.pl See merge request isc-projects/bind9!1669
This commit is contained in:
commit
769982d7db
1 changed files with 1 additions and 1 deletions
|
|
@ -240,7 +240,7 @@ sub clean_pid_file {
|
|||
if (send_signal(0, $pid) == 0) {
|
||||
# XXX: on windows this is likely to result in a
|
||||
# false positive, so don't bother reporting the error.
|
||||
if ($ENV{'CYGWIN'} eq "") {
|
||||
if (!defined($ENV{'CYGWIN'})) {
|
||||
print "I:$test:$server crashed on shutdown\n";
|
||||
$errors = 1;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue