- Fix that get_option for cache-sizes does not print double newline.

git-svn-id: file:///svn/unbound/trunk@3395 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
Wouter Wijngaards 2015-04-10 13:43:44 +00:00
parent c03ff186ec
commit 55412b2645
2 changed files with 3 additions and 2 deletions

View file

@ -3,6 +3,7 @@
- ratelimit feature, ratelimit: 100, or some sensible qps, can be - ratelimit feature, ratelimit: 100, or some sensible qps, can be
used to turn it on. It ratelimits recursion effort per zone. used to turn it on. It ratelimits recursion effort per zone.
For particular names you can configure exceptions in unbound.conf. For particular names you can configure exceptions in unbound.conf.
- Fix that get_option for cache-sizes does not print double newline.
8 April 2015: Wouter 8 April 2015: Wouter
- Fix crash in dnstap: Do not try to log TCP responses after timeout. - Fix crash in dnstap: Do not try to log TCP responses after timeout.

View file

@ -595,8 +595,8 @@ config_collate_cat(struct config_strlist* list)
#define O_MEM(opt, str, var) if(strcmp(opt, str)==0) { \ #define O_MEM(opt, str, var) if(strcmp(opt, str)==0) { \
if(cfg->var > 1024*1024*1024) { \ if(cfg->var > 1024*1024*1024) { \
size_t f=cfg->var/(size_t)1000000, b=cfg->var%(size_t)1000000; \ size_t f=cfg->var/(size_t)1000000, b=cfg->var%(size_t)1000000; \
snprintf(buf, len, "%u%6.6u\n", (unsigned)f, (unsigned)b); \ snprintf(buf, len, "%u%6.6u", (unsigned)f, (unsigned)b); \
} else snprintf(buf, len, "%u\n", (unsigned)cfg->var); \ } else snprintf(buf, len, "%u", (unsigned)cfg->var); \
func(buf, arg);} func(buf, arg);}
/** compare and print list option */ /** compare and print list option */
#define O_LST(opt, name, lst) if(strcmp(opt, name)==0) { \ #define O_LST(opt, name, lst) if(strcmp(opt, name)==0) { \