Merge pull request #571 from KFleshman/issue-569

Fixed bug in includes/discovery/os/hp.inc.php
This commit is contained in:
Daniel Preussker
2015-03-09 19:43:33 +00:00
+1 -1
View File
@@ -2,7 +2,7 @@
if (!$os)
{
if(preg_match('/HP [a-zA-Z0-9-]+ Switch Software Version/',$string)) { $os = "hp"; }
if(preg_match('/HP [a-zA-Z0-9-]+ Switch Software Version/',$sysDescr)) { $os = "hp"; }
}
?>