Skip to content
Snippets Groups Projects
Commit f90a6882 authored by Lubos Slovak's avatar Lubos Slovak
Browse files

Fixed dname case-sensitive comparation

- If case-sensitive, do not compare just pointers.

refs #776
parent 6425f1d5
No related branches found
No related tags found
No related merge requests found
......@@ -281,7 +281,7 @@ DEBUG_DNSLIB_DNAME(
free(name2);
);
if (d1 == d2) {
if (!cs && d1 == d2) {
return 0;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment