mirror of
https://github.com/isc-projects/bind9.git
synced 2026-07-16 02:52:51 -04: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
1 changed files with 2 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue