mirror of
https://github.com/curl/curl.git
synced 2026-06-19 12:35:38 +03:00
try_config() takes a second parameter as const, to prevent picky compiler
warnings
This commit is contained in:
parent
01771e50a1
commit
3d7f4c0d77
1 changed files with 2 additions and 2 deletions
|
|
@ -49,7 +49,7 @@ static int config_sortlist(struct apattern **sortlist, int *nsort,
|
|||
const char *str);
|
||||
static int set_search(ares_channel channel, const char *str);
|
||||
static int set_options(ares_channel channel, const char *str);
|
||||
static char *try_config(char *s, char *opt);
|
||||
static char *try_config(char *s, const char *opt);
|
||||
static const char *try_option(const char *p, const char *q, const char *opt);
|
||||
static int ip_addr(const char *s, int len, struct in_addr *addr);
|
||||
static void natural_mask(struct apattern *pat);
|
||||
|
|
@ -716,7 +716,7 @@ static int set_options(ares_channel channel, const char *str)
|
|||
return ARES_SUCCESS;
|
||||
}
|
||||
|
||||
static char *try_config(char *s, char *opt)
|
||||
static char *try_config(char *s, const char *opt)
|
||||
{
|
||||
int len;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue