Commit d8bdd4cc authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

dnsapi: Remove a superfluous TRUE-FALSE conditional expression.

parent 3dd26315
......@@ -136,7 +136,7 @@ BOOL WINAPI DnsRecordCompare( PDNS_RECORD r1, PDNS_RECORD r2 )
r1->Flags.DW != r2->Flags.DW ||
r1->dwReserved != r2->dwReserved) return FALSE;
wide = (r1->Flags.S.CharSet == DnsCharSetUnicode) ? TRUE : FALSE;
wide = r1->Flags.S.CharSet == DnsCharSetUnicode;
if (dns_strcmpX( r1->pName, r2->pName, wide )) return FALSE;
switch (r1->wType)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment