From a44f83cb7d6f2a64d4e643af8b87fc08d42e2209 Mon Sep 17 00:00:00 2001 From: Steve Gilvarry Date: Mon, 5 Jan 2015 07:58:39 +1100 Subject: [PATCH] #658 Fix error message for finding arp path --- web/skins/classic/views/monitorprobe.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/skins/classic/views/monitorprobe.php b/web/skins/classic/views/monitorprobe.php index 5b57abb00..0c57d6ac6 100644 --- a/web/skins/classic/views/monitorprobe.php +++ b/web/skins/classic/views/monitorprobe.php @@ -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);