2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-28 13:08:06 +00:00

sorry, screwed up the cast in the last revision. cast a pointer to an int,

when i wanted to cast the int to unsigned then make a pointer.
This commit is contained in:
David Lawrence 2000-05-11 15:25:05 +00:00
parent 0c73b546ec
commit 24fe57b6da

View File

@ -96,7 +96,8 @@ channel_fromconf(dns_c_logchan_t *cchan, isc_logconfig_t *lctx) {
return (ISC_R_UNEXPECTED);
}
(void)dns_c_logchan_getversions(cchan,
(unsigned int)&versions);
&((isc_uint32_t)
versions));
(void)dns_c_logchan_getsize(cchan, &size);
dest.file.stream = NULL;
dest.file.name = cchan->u.filec.path;