diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-11-08 05:04:27 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-11-08 05:04:27 +0000 |
commit | f024f52dc3624d1f83dd391be02eb12f0bdcbcc6 (patch) | |
tree | 45af6f146391d7ba96d1d28fe7774558baf1abe0 /etc/inc | |
parent | c19c93a4649e72bb090d8d14abbdde3e690d4533 (diff) | |
download | pfsense-f024f52dc3624d1f83dd391be02eb12f0bdcbcc6.zip pfsense-f024f52dc3624d1f83dd391be02eb12f0bdcbcc6.tar.gz |
Use gzsig
Diffstat (limited to 'etc/inc')
-rw-r--r-- | etc/inc/util.inc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/etc/inc/util.inc b/etc/inc/util.inc index d24db95..6218c01 100644 --- a/etc/inc/util.inc +++ b/etc/inc/util.inc @@ -457,9 +457,8 @@ function verify_digital_signature($fname) { global $g; - return mwexec("/usr/local/bin/verifysig " . - escapeshellarg("{$g['etc_path']}/pubkey.pem") . " " . - escapeshellarg($fname)); + return mwexec("/usr/local/sbin/gzsig verify {$g['etc_path']}/pubkey.pem < " . escapeshellarg($fname)); + } /* obtain MAC address given an IP address by looking at the ARP table */ |