diff options
author | jim-p <jimp@pfsense.org> | 2011-04-05 11:16:08 -0400 |
---|---|---|
committer | jim-p <jimp@pfsense.org> | 2011-04-05 11:16:08 -0400 |
commit | 5b64e3369ae2ad38e4384741160e7f59cd414c7b (patch) | |
tree | d2d1a401f21088f10b3e92f42a7a19800648ac17 | |
parent | 0ef48aed8b6b9098c924229f725e12b3f7ec7013 (diff) | |
download | pfsense-5b64e3369ae2ad38e4384741160e7f59cd414c7b.zip pfsense-5b64e3369ae2ad38e4384741160e7f59cd414c7b.tar.gz |
Fix variable name
-rw-r--r-- | etc/inc/system.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/inc/system.inc b/etc/inc/system.inc index 4821a8a..c71fb38 100644 --- a/etc/inc/system.inc +++ b/etc/inc/system.inc @@ -1166,11 +1166,11 @@ function system_ntp_configure() { $ips = array_map('find_interface_ip', $ifaces); foreach ($ips as $ip) { if (is_ipaddr($ip)) - $ntpdcfg .= "listen on $ip\n"; + $ntpcfg .= "listen on $ip\n"; } } } - $ntpdcfg .= "\n"; + $ntpcfg .= "\n"; /* open configuration for wrting or bail */ $fd = fopen("{$g['varetc_path']}/ntpd.conf","w"); |