mirror of https://github.com/getdnsapi/getdns.git
TSIG spec contains colon too
This commit is contained in:
parent
a100aff4de
commit
3af8a917a2
|
@ -382,7 +382,8 @@ ipaddr_dict(getdns_context *context, char *ipstr)
|
||||||
p = c;
|
p = c;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if ((br = strchr(ipstr, '.')) && ((c = strchr(br + 1, ':'))))
|
} else if ((br = strchr(ipstr, '.')) && (c = strchr(br + 1, ':'))
|
||||||
|
&& (T == NULL || c < T))
|
||||||
p = c;
|
p = c;
|
||||||
|
|
||||||
else if ((*ipstr == '*') && (c = strchr(ipstr+1, ':')))
|
else if ((*ipstr == '*') && (c = strchr(ipstr+1, ':')))
|
||||||
|
|
Loading…
Reference in New Issue