mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-09 09:03:56 -04:00
minor output change.
This commit is contained in:
parent
587368b247
commit
a9f1d8edb2
1 changed files with 2 additions and 0 deletions
|
|
@ -169,6 +169,8 @@ dns_c_printinunits(FILE *fp, isc_uint32_t val)
|
|||
|
||||
if (val == DNS_C_SIZE_SPEC_DEFAULT)
|
||||
fprintf(fp, "default");
|
||||
else if (val == 0)
|
||||
fprintf(fp, "0");
|
||||
else if ((val % one_gig) == 0)
|
||||
fprintf(fp, "%luG", (unsigned long) val / one_gig);
|
||||
else if ((val % one_meg) == 0)
|
||||
|
|
|
|||
Loading…
Reference in a new issue