From: Benoit Plessis Date: Mon, 2 Sep 2019 08:42:09 +0000 (+0200) Subject: name error in the lately added default value setting for bulk_size X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=5482b5db28cf542fca2036db2460169b4fac6124;hp=2570dd4c427654968635ca6f083ce55283ce2465;p=collectd.git name error in the lately added default value setting for bulk_size --- diff --git a/src/snmp.c b/src/snmp.c index 361a1400..43815dcf 100644 --- a/src/snmp.c +++ b/src/snmp.c @@ -764,7 +764,7 @@ static int csnmp_config_add_host(oconfig_item_t *ci) { /* These mean that we have not set a timeout or retry value */ hd->timeout = 0; hd->retries = -1; - hd->build_size = 0; + hd->bulk_size = 0; for (int i = 0; i < ci->children_num; i++) { oconfig_item_t *option = ci->children + i;