Skip to content

Commit

Permalink
Fix wchar build failures
Browse files Browse the repository at this point in the history
  • Loading branch information
nickwilliams-zaxiom committed Sep 21, 2023
1 parent d11971f commit 4cc2425
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ACE/ace/SOCK_Dgram.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -835,7 +835,7 @@ ACE_SOCK_Dgram::make_multicast_ifaddr6 (ipv6_mreq *ret_mreq,
else if ((num_if && pAddrs->Ipv6IfIndex == static_cast<unsigned int>(if_ix))
|| (!num_if &&
(ACE_OS::strcmp (net_if_char, pAddrs->AdapterName) == 0
|| ACE_OS::strcmp (net_if_char, pAddrs->FriendlyName) == 0)))
|| ACE_OS::strcmp (ACE_TEXT_CHAR_TO_TCHAR (net_if_char), pAddrs->FriendlyName) == 0)))
{
lmreq.ipv6mr_interface = pAddrs->Ipv6IfIndex;
break;
Expand Down

0 comments on commit 4cc2425

Please sign in to comment.