mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-09 01:12:07 -04:00
[master] silence warning
This commit is contained in:
parent
c7f299247c
commit
a4ee78d003
1 changed files with 2 additions and 1 deletions
|
|
@ -330,7 +330,8 @@ isc_regex_validate(const char *c) {
|
|||
{
|
||||
unsigned int len;
|
||||
len = strlen(cc[i]);
|
||||
if (len != (c - ccname))
|
||||
if (len !=
|
||||
(unsigned int)(c - ccname))
|
||||
continue;
|
||||
if (strncmp(cc[i], ccname, len))
|
||||
continue;
|
||||
|
|
|
|||
Loading…
Reference in a new issue