summaryrefslogtreecommitdiffstats
path: root/ipset_iphash.c
diff options
context:
space:
mode:
authorJozsef Kadlecsik <kadlec@blackhole.kfki.hu>2010-10-04 12:46:07 +0200
committerJozsef Kadlecsik <kadlec@blackhole.kfki.hu>2010-10-04 12:46:07 +0200
commit97051dbde31e30c4b3a36e6d314d114decd38389 (patch)
treec4509cc19d1172547582c6fe5465dade10c9abf9 /ipset_iphash.c
parentc463a1188b9aaec1e09dfe80779173c0a015d70c (diff)
Take into account the compile time setting of the default hash size
Diffstat (limited to 'ipset_iphash.c')
-rw-r--r--ipset_iphash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipset_iphash.c b/ipset_iphash.c
index 0bc5bd1..0a02d90 100644
--- a/ipset_iphash.c
+++ b/ipset_iphash.c
@@ -39,7 +39,7 @@ iphash_create_init(void *data)
DP("create INIT");
/* Default create parameters */
- mydata->hashsize = 1024;
+ mydata->hashsize = IP_NF_SET_HASHSIZE;
mydata->probes = 8;
mydata->resize = 50;