aboutsummaryrefslogtreecommitdiffstats
path: root/config/haproxy-stable/haproxy.inc
diff options
context:
space:
mode:
authorthompsa <andy@fud.org.nz>2010-03-19 08:01:37 +1300
committerthompsa <andy@fud.org.nz>2010-03-19 08:02:15 +1300
commit0f0953a249884f6bb3e67e76b1791be595772a50 (patch)
tree943b9db59d2e31dbdd1e72aacc940fdfb2325adc /config/haproxy-stable/haproxy.inc
parente073a1cb770bd7d4dbb46f74d72db704b800c681 (diff)
downloadpfsense-packages-0f0953a249884f6bb3e67e76b1791be595772a50.tar.gz
pfsense-packages-0f0953a249884f6bb3e67e76b1791be595772a50.tar.bz2
pfsense-packages-0f0953a249884f6bb3e67e76b1791be595772a50.zip
Fix typeo, base64deode -> base64_decode.
Diffstat (limited to 'config/haproxy-stable/haproxy.inc')
-rw-r--r--config/haproxy-stable/haproxy.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/haproxy-stable/haproxy.inc b/config/haproxy-stable/haproxy.inc
index 455638a1..5cc61e4b 100644
--- a/config/haproxy-stable/haproxy.inc
+++ b/config/haproxy-stable/haproxy.inc
@@ -259,7 +259,7 @@ function haproxy_configure() {
if(is_array($a_global)) {
fwrite ($fd, "global\n");
if($a_global['advanced'])
- fwrite ($fd, "\t" . base64deode($a_global['advanced']) . "\n");
+ fwrite ($fd, "\t" . base64_decode($a_global['advanced']) . "\n");
fwrite ($fd, "\tmaxconn\t\t\t".$a_global['maxconn']."\n");
if($a_global['remotesyslog'])
fwrite ($fd, "\tlog\t\t\t{$a_global['remotesyslog']}\t{$a_global['logfacility']}\t{$a_global['loglevel']}\n");