Skip to content

Commit

Permalink
correct || to &&
Browse files Browse the repository at this point in the history
  • Loading branch information
VVelox committed May 1, 2019
1 parent b0e3cfd commit eedcb0c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ sub usable {
my $self=$_[0];

if (
( $^O !~ 'freebsd' ) ||
( $^O !~ 'freebsd' ) &&
( ! -x '/sbin/gmirror' )
){
$self->{usable}=0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ sub usable {
my $self=$_[0];

if (
( $^O !~ 'freebsd' ) ||
( $^O !~ 'freebsd' ) &&
( ! -x '/sbin/graid' )
){
$self->{usable}=0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ sub usable {
my $self=$_[0];

if (
( $^O !~ 'freebsd' ) ||
( $^O !~ 'freebsd' ) &&
( ! -x '/sbin/graid3' )
){
$self->{usable}=0;
Expand Down

0 comments on commit eedcb0c

Please sign in to comment.