Navigation Menu

Skip to content

Commit

Permalink
- Fix compile on Solaris for unbound-checkconf.
Browse files Browse the repository at this point in the history
  • Loading branch information
wcawijngaards committed Mar 23, 2020
1 parent ce7fd59 commit cca5cfc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions doc/Changelog
@@ -1,3 +1,6 @@
23 March 2020: Wouter
- Fix compile on Solaris for unbound-checkconf.

20 March 2020: George
- Merge PR #198 from fobser: Declare lz_enter_rr_into_zone() static, it's
only used in this file.
Expand Down
2 changes: 1 addition & 1 deletion smallapp/unbound-checkconf.c
Expand Up @@ -705,7 +705,7 @@ check_auth(struct config_file* cfg)
{
int is_rpz = 0;
struct auth_zones* az = auth_zones_create();
if(!az || !auth_zones_apply_cfg(az, cfg, 0i, &is_rpz)) {
if(!az || !auth_zones_apply_cfg(az, cfg, 0, &is_rpz)) {
fatal_exit("Could not setup authority zones");
}
auth_zones_delete(az);
Expand Down

0 comments on commit cca5cfc

Please sign in to comment.