mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 10:01:15 -04:00
[v9_9] silence warning
This commit is contained in:
parent
f0a29f2d0f
commit
92fcc84855
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