Skip to content
Snippets Groups Projects
Commit 2d4dcfb7 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

made the ares_inet_net_pton() proto use size_t size, as the function in the

code uses that
parent 34854e70
No related branches found
No related tags found
No related merge requests found
......@@ -97,7 +97,7 @@ int ares_inet_pton(int af, const char *src, void *dst);
#if defined(HAVE_INET_NET_PTON) && defined(HAVE_INET_NET_PTON_IPV6)
#define ares_inet_net_pton(w,x,y,z) inet_net_pton(w,x,y,z)
#else
int ares_inet_net_pton(int af, const char *src, void *dst, unsigned int size);
int ares_inet_net_pton(int af, const char *src, void *dst, size_t size);
#endif
#endif /* ARES_SETUP_H */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment