Merge pull request #660 from SteveGilvarry/patch-3

#658 Fix error message for finding arp path
pull/662/head
Isaac Connor 2015-01-04 19:18:17 -05:00
commit e9fc7cf33a
1 changed files with 1 additions and 1 deletions

View File

@ -292,7 +292,7 @@ unset($output);
$command = "type -p arp";
$result = exec( escapeshellcmd($command), $output, $status );
if ( $status )
Fatal( "Unable determine arp path, status is '$status'" );
Fatal( "Unable to determine path for arp command, type -p arp returned '$status'" );
// Now that we know where arp is, call it using the full path
$command = $output[0]." -a";
unset($output);