summaryrefslogtreecommitdiffstats
path: root/runtime/glbl.c
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2012-03-22 16:06:57 +0100
committerRainer Gerhards <rgerhards@adiscon.com>2012-03-22 16:06:57 +0100
commit1d6d534df2368c906a2d80663634b2eef5535ef7 (patch)
treea77c3e8c677e4e0449eab1cdc68b9e124edcf8b7 /runtime/glbl.c
parent49ec54d36984b9e91da7bd41e56e65dac22ce830 (diff)
downloadrsyslog-1d6d534df2368c906a2d80663634b2eef5535ef7.tar.gz
rsyslog-1d6d534df2368c906a2d80663634b2eef5535ef7.tar.xz
rsyslog-1d6d534df2368c906a2d80663634b2eef5535ef7.zip
unified use of $LocalHostIPIF among all locally-emitting inputs
with the exception of imdiag, which I humbly do not think needs this capabilit (even counter-productive for testbench use).
Diffstat (limited to 'runtime/glbl.c')
-rw-r--r--runtime/glbl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/glbl.c b/runtime/glbl.c
index 134e6c6e..4f2ee377 100644
--- a/runtime/glbl.c
+++ b/runtime/glbl.c
@@ -194,7 +194,7 @@ setLocalHostIPIF(void __attribute__((unused)) *pVal, uchar *pNewVal)
localRet = net.GetIFIPAddr(pNewVal, AF_UNSPEC, myIP, (int) sizeof(myIP));
if(localRet != RS_RET_OK) {
- errmsg.LogError(0, RS_RET_ERR, "$LocalIPIF: IP address for interface "
+ errmsg.LogError(0, RS_RET_ERR, "$LocalHostIPIF: IP address for interface "
"'%s' cannnot be obtained - ignoring directive", pNewVal);
} else {
storeLocalHostIPIF(myIP);