summaryrefslogtreecommitdiffstats
path: root/plugins/imuxsock
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2010-10-15 08:38:35 -0700
committerRainer Gerhards <rgerhards@adiscon.com>2010-10-15 08:38:35 -0700
commit93662146b46c03b2a5db83ae074aa77f207dd98a (patch)
tree32db6d8cca9c8c06b110c41ce1e33ccf1193e565 /plugins/imuxsock
parentf60fd65378d4bfc110e8ae1b55197d73c3293f0c (diff)
parent87472f58b4cd47762a7b134f0d8521cabc739cae (diff)
downloadrsyslog-93662146b46c03b2a5db83ae074aa77f207dd98a.tar.gz
rsyslog-93662146b46c03b2a5db83ae074aa77f207dd98a.tar.xz
rsyslog-93662146b46c03b2a5db83ae074aa77f207dd98a.zip
Merge branch 'v5-devel'
Conflicts: ChangeLog
Diffstat (limited to 'plugins/imuxsock')
-rw-r--r--plugins/imuxsock/imuxsock.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/imuxsock/imuxsock.c b/plugins/imuxsock/imuxsock.c
index c248b3d6..c1168c87 100644
--- a/plugins/imuxsock/imuxsock.c
+++ b/plugins/imuxsock/imuxsock.c
@@ -283,7 +283,7 @@ addLstnSocketName(void __attribute__((unused)) *pVal, uchar *pNewVal)
}
CHKiRet(prop.ConstructFinalize(listeners[nfd].hostName));
if(ratelimitInterval > 0) {
- if((listeners[nfd].ht = create_hashtable(1000, hash_from_key_fn, key_equals_fn, NULL)) == NULL) {
+ if((listeners[nfd].ht = create_hashtable(100, hash_from_key_fn, key_equals_fn, NULL)) == NULL) {
/* in this case, we simply turn of rate-limiting */
dbgprintf("imuxsock: turning off rate limiting because we could not "
"create hash table\n");
@@ -761,7 +761,7 @@ CODESTARTwillRun
if(pLogSockName != NULL)
listeners[0].sockName = pLogSockName;
if(ratelimitIntervalSysSock > 0) {
- if((listeners[0].ht = create_hashtable(1000, hash_from_key_fn, key_equals_fn, NULL)) == NULL) {
+ if((listeners[0].ht = create_hashtable(100, hash_from_key_fn, key_equals_fn, NULL)) == NULL) {
/* in this case, we simply turn of rate-limiting */
dbgprintf("imuxsock: turning off rate limiting because we could not "
"create hash table\n");