diff options
author | Michael Forney <mforney@mforney.org> | 2013-11-23 22:33:05 -0800 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2013-11-24 09:39:30 -0500 |
commit | 642936d6dd22b99534cab4099deea8d6ceefeea0 (patch) | |
tree | fe3a4394c805b8a79bf3ce3584f4172191217072 /include/resolv.h | |
parent | 22f29bfebe04ac07bc1907406137fcbd373ede36 (diff) | |
download | musl-642936d6dd22b99534cab4099deea8d6ceefeea0.tar.gz musl-642936d6dd22b99534cab4099deea8d6ceefeea0.tar.bz2 musl-642936d6dd22b99534cab4099deea8d6ceefeea0.tar.xz musl-642936d6dd22b99534cab4099deea8d6ceefeea0.zip |
Fix dn_comp prototype and add stub
This function is used by ping6 from iputils.
Diffstat (limited to 'include/resolv.h')
-rw-r--r-- | include/resolv.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/resolv.h b/include/resolv.h index 259e4bc1..09fcfdfe 100644 --- a/include/resolv.h +++ b/include/resolv.h @@ -133,7 +133,7 @@ int res_querydomain(const char *, const char *, int, int, unsigned char *, int); int res_search(const char *, int, int, unsigned char *, int); int res_mkquery(int, const char *, int, int, char *, int, struct rrec *, char *, int); int res_send(const char *, int, char *, int); -int dn_comp(unsigned char *, unsigned char *, int, unsigned char **, unsigned char *, unsigned char **); +int dn_comp(const char *, unsigned char *, int, unsigned char **, unsigned char **); int dn_expand(const unsigned char *, const unsigned char *, const unsigned char *, char *, int); int dn_skipname(const unsigned char *, const unsigned char *); |