Merge branch 'master' into storageareas

This commit is contained in:
Isaac Connor 2016-12-20 11:29:31 -05:00
commit ed618ff7b0
2 changed files with 2 additions and 2 deletions

View File

@ -69,7 +69,7 @@ too much degradation of performance.
%build
%cmake \
-DZM_TARGET_DISTRO="el7" \
-DZM_TARGET_DISTRO="el%{rhel}" \
.
make %{?_smp_mflags}

View File

@ -312,7 +312,7 @@ MAIN: while( $loop ) {
aud_print( "Filesystem monitor link '$link' does not point to valid monitor directory" );
if ( confirm() ) {
( $link ) = ( $link =~ /^(.*)$/ ); # De-taint
my $command = "rm $link";
my $command = qq`rm "$link"`;
executeShellCommand( $command );
$cleaned = 1;
}