diff options
Diffstat (limited to 'resolv')
-rw-r--r-- | resolv/res_init.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/resolv/res_init.c b/resolv/res_init.c index ef1fcb476c..764e571029 100644 --- a/resolv/res_init.c +++ b/resolv/res_init.c @@ -95,8 +95,8 @@ static void res_setoptions (res_state, const char *, const char *) internal_function; #ifdef RESOLVSORT -static const char sort_mask[] = "/&"; -#define ISSORTMASK(ch) (strchr(sort_mask, ch) != NULL) +static const char sort_mask_chars[] = "/&"; +#define ISSORTMASK(ch) (strchr(sort_mask_chars, ch) != NULL) static u_int32_t net_mask __P((struct in_addr)); #endif |