diff options
author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2024-05-15 10:15:47 +0000 |
---|---|---|
committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2024-05-15 10:15:47 +0000 |
commit | 4891157c57ccd537cf8fc88feb002be10e94c288 (patch) | |
tree | b68e7233b70b5aa3afff0baffb7934d6d5b9ef78 /ldns/parse.h | |
parent | 0c57cb21e0c6a8a86fa074baeaeb6a002e2b7734 (diff) |
Fix bug in upstream PR 238.vendor/ldns
Diffstat (limited to 'ldns/parse.h')
-rw-r--r-- | ldns/parse.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ldns/parse.h b/ldns/parse.h index ba7edf5679d8..6130dae32bd2 100644 --- a/ldns/parse.h +++ b/ldns/parse.h @@ -95,6 +95,8 @@ ssize_t ldns_fget_token_l(FILE *f, char *token, const char *delim, size_t limit, */ ldns_status ldns_fget_token_l_st(FILE *f, char **token, size_t *limit, bool fixed, const char *delim, int *line_nr); +ssize_t ldns_fget_token_l_resolv_conf(FILE *f, char *token, const char *delim, size_t limit, int *line_nr); + /** * returns a token/char from the buffer b. * This function deals with ( and ) in the buffer, |