diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2010-06-02 23:47:19 -0400 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2010-06-02 23:47:26 -0400 |
commit | b72eb6c8cc0aa927ee79d4c389429eef1a648433 (patch) | |
tree | 1e457a0c429fbead93b716140b27d8d22896efdd /usr | |
parent | 60ce86ea1e603f4b8aa413f7275a5efed28e9aaf (diff) | |
download | pfsense-b72eb6c8cc0aa927ee79d4c389429eef1a648433.zip pfsense-b72eb6c8cc0aa927ee79d4c389429eef1a648433.tar.gz |
Show when Padlock is active
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/local/www/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/index.php b/usr/local/www/index.php index 4125b51..0463750 100755 --- a/usr/local/www/index.php +++ b/usr/local/www/index.php @@ -165,7 +165,7 @@ EOF; if ($fd) { while (!feof($fd)) { $dmesgl = fgets($fd); - if (preg_match("/^hifn.: (.*?),/", $dmesgl, $matches) or preg_match("/^safe.: (.*?),/", $dmesgl, $matches) or preg_match("/^ubsec.: (.*?),/", $dmesgl, $matches) or preg_match("/^padlock.: <(.*?)>,/", $dmesgl, $matches) or preg_match("/^glxsb.: (.*?),/", $dmesgl, $matches)) { + if (preg_match("/^hifn.: (.*?),/", $dmesgl, $matches) or preg_match("/.*(VIA Padlock)/", $dmesgl, $matches) or preg_match("/^safe.: (.*?),/", $dmesgl, $matches) or preg_match("/^ubsec.: (.*?),/", $dmesgl, $matches) or preg_match("/^padlock.: <(.*?)>,/", $dmesgl, $matches) or preg_match("/^glxsb.: (.*?),/", $dmesgl, $matches)) { $hwcrypto = $matches[1]; break; } |