diff options
author | jim-p <jimp@pfsense.org> | 2012-03-27 15:44:13 -0400 |
---|---|---|
committer | jim-p <jimp@pfsense.org> | 2012-03-27 15:44:13 -0400 |
commit | 711fdc6806a181f8258a87dcbd45aab84e0c9775 (patch) | |
tree | 567d2a6b1293c1a3b54934173c0791dcb9e959e4 /config | |
parent | 893dd62c4dc33c2fcd1c47cbb21dcb831706051a (diff) | |
download | pfsense-packages-711fdc6806a181f8258a87dcbd45aab84e0c9775.tar.gz pfsense-packages-711fdc6806a181f8258a87dcbd45aab84e0c9775.tar.bz2 pfsense-packages-711fdc6806a181f8258a87dcbd45aab84e0c9775.zip |
Generalize a couple references
Diffstat (limited to 'config')
-rw-r--r-- | config/haproxy/haproxy.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/haproxy/haproxy.inc b/config/haproxy/haproxy.inc index 96b57190..4ed5f393 100644 --- a/config/haproxy/haproxy.inc +++ b/config/haproxy/haproxy.inc @@ -758,7 +758,7 @@ function haproxy_do_xmlrpc_sync($sync_to_ip, $password) { $cli->setCredentials('admin', $password); $resp = $cli->send($msg, "250"); if(!$resp) { - $error = "A communications error occurred while attempting HAProxy XMLRPC sync with {$url}:{$port} (pfsense.exec_php)."; + $error = "A communications error occurred while attempting HAProxy XMLRPC sync with {$url}:{$port} (exec_php)."; log_error($error); file_notice("sync_settings", $error, "HAProxy Settings Reload", ""); } elseif($resp->faultCode()) { @@ -768,7 +768,7 @@ function haproxy_do_xmlrpc_sync($sync_to_ip, $password) { log_error($error); file_notice("sync_settings", $error, "HAProxy Settings Sync", ""); } else { - log_error("HAProxy XMLRPC reload data success with {$url}:{$port} (pfsense.exec_php)."); + log_error("HAProxy XMLRPC reload data success with {$url}:{$port} (exec_php)."); } } |