diff options
author | Renato Botelho <garga@FreeBSD.org> | 2014-02-03 15:04:52 -0200 |
---|---|---|
committer | Renato Botelho <garga@FreeBSD.org> | 2014-02-04 12:34:42 -0200 |
commit | 39ed87e54d14af2603cc66e65ac5e13a9c9843b1 (patch) | |
tree | 9a585f8d098905cdcab66cae03513364d8705d8f | |
parent | 873c1701a8934ac9a10284fe794eb86db1cead68 (diff) | |
download | pfsense-39ed87e54d14af2603cc66e65ac5e13a9c9843b1.zip pfsense-39ed87e54d14af2603cc66e65ac5e13a9c9843b1.tar.gz |
Fix an obvious typo on var name
-rw-r--r-- | usr/local/sbin/prefixes.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/sbin/prefixes.php b/usr/local/sbin/prefixes.php index b0920cb..7c924c8 100644 --- a/usr/local/sbin/prefixes.php +++ b/usr/local/sbin/prefixes.php @@ -67,7 +67,7 @@ if(count($routes) > 0) { /* get clog from dhcpd */ $dhcpdlogfile = "/var/log/dhcpd.log"; $clog = array(); -if(file_exists(dhcpdlogfile)) +if(file_exists($dhcpdlogfile)) exec("clog $dhcpdlogfile", $clog, $ret); if($ret > 0) |