Skip to content

Commit

Permalink
* Fix that ldns-read-zone and ldns_zone_new_frm_fp_l properly return
Browse files Browse the repository at this point in the history
  the $INCLUDE not implemented error.
  • Loading branch information
wcawijngaards committed Jul 21, 2021
1 parent 97019eb commit 46042cb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Changelog
Expand Up @@ -26,6 +26,8 @@
LDNS_MAX_LINELEN
* Add SVCPARAMS to python ldns_rdf_type2str function.
* PR #134 Miscellaneous spelling fixes. Thanks jsoref!
* Fix that ldns-read-zone and ldns_zone_new_frm_fp_l properly return
the $INCLUDE not implemented error.

1.7.1 2019-07-26
* bugfix: Manage verification paths for OpenSSL >= 1.1.0
Expand Down
2 changes: 1 addition & 1 deletion zone.c
Expand Up @@ -261,7 +261,7 @@ ldns_zone_new_frm_fp_l(ldns_zone **z, FILE *fp, const ldns_rdf *origin, uint32_t
break;
case LDNS_STATUS_SYNTAX_INCLUDE:
ret = LDNS_STATUS_SYNTAX_INCLUDE_ERR_NOTIMPL;
break;
goto error;
default:
ret = s;
goto error;
Expand Down

0 comments on commit 46042cb

Please sign in to comment.