mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-28 21:17:54 +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:
parent
0c73b546ec
commit
24fe57b6da
@ -96,7 +96,8 @@ channel_fromconf(dns_c_logchan_t *cchan, isc_logconfig_t *lctx) {
|
|||||||
return (ISC_R_UNEXPECTED);
|
return (ISC_R_UNEXPECTED);
|
||||||
}
|
}
|
||||||
(void)dns_c_logchan_getversions(cchan,
|
(void)dns_c_logchan_getversions(cchan,
|
||||||
(unsigned int)&versions);
|
&((isc_uint32_t)
|
||||||
|
versions));
|
||||||
(void)dns_c_logchan_getsize(cchan, &size);
|
(void)dns_c_logchan_getsize(cchan, &size);
|
||||||
dest.file.stream = NULL;
|
dest.file.stream = NULL;
|
||||||
dest.file.name = cchan->u.filec.path;
|
dest.file.name = cchan->u.filec.path;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user