Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
BIND
Commits
2ffe094f
Commit
2ffe094f
authored
May 10, 2000
by
David Lawrence
Browse files
fixed argument type mismatch in dns_c_logchan_getversions call
parent
ff8d15be
Changes
1
Show whitespace changes
Inline
Side-by-side
bin/named/logconf.c
View file @
2ffe094f
...
@@ -95,11 +95,12 @@ channel_fromconf(dns_c_logchan_t *cchan, isc_logconfig_t *lctx) {
...
@@ -95,11 +95,12 @@ channel_fromconf(dns_c_logchan_t *cchan, isc_logconfig_t *lctx) {
"no file name"
);
"no file name"
);
return
(
ISC_R_UNEXPECTED
);
return
(
ISC_R_UNEXPECTED
);
}
}
(
void
)
dns_c_logchan_getversions
(
cchan
,
&
versions
);
(
void
)
dns_c_logchan_getversions
(
cchan
,
(
unsigned
int
)
&
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
;
dest
.
file
.
versions
=
(
int
)
versions
;
dest
.
file
.
versions
=
versions
;
dest
.
file
.
maximum_size
=
size
;
dest
.
file
.
maximum_size
=
size
;
}
}
break
;
break
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment