mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-09-05 09:05:40 +00:00
80. [cleanup] <isc/print.h> does not need <stdio.h> or <stdlib.h>.
(and now dns/ttl.c needs it since it was taken out of isc/print.h)
This commit is contained in:
@@ -18,6 +18,7 @@
|
||||
#include <config.h>
|
||||
|
||||
#include <ctype.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <isc/assertions.h>
|
||||
@@ -54,7 +55,8 @@ ttlfmt(unsigned int t, char *s, isc_boolean_t verbose,
|
||||
t, s,
|
||||
t == 1 ? "" : "s");
|
||||
else
|
||||
len = snprintf(tmp, sizeof(tmp), "%u%c", t, s[0]);
|
||||
len = snprintf(tmp, sizeof(tmp), "%u%c", t, s[0]);
|
||||
|
||||
INSIST(len + 1 <= sizeof tmp);
|
||||
isc_buffer_available(target, ®ion);
|
||||
if (len > region.length)
|
||||
@@ -67,9 +69,7 @@ ttlfmt(unsigned int t, char *s, isc_boolean_t verbose,
|
||||
/* Derived from bind8 ns_format_ttl(). */
|
||||
|
||||
isc_result_t
|
||||
dns_ttl_totext(isc_uint32_t src, isc_boolean_t verbose,
|
||||
isc_buffer_t *target)
|
||||
{
|
||||
dns_ttl_totext(isc_uint32_t src, isc_boolean_t verbose, isc_buffer_t *target) {
|
||||
unsigned secs, mins, hours, days, weeks, x;
|
||||
|
||||
secs = src % 60; src /= 60;
|
||||
|
Reference in New Issue
Block a user