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 c7a5697 commit d11971f
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 @@ -684,7 +684,7 @@ ACE_SOCK_Dgram::make_multicast_ifaddr (ip_mreq *ret_mreq,
while (pAddrs && set_result == -1)
{
if (ACE_OS::strcmp (net_if_char, pAddrs->AdapterName) == 0 ||
ACE_OS::strcmp (ACE_TEXT_ALWAYS_WCHAR (net_if_char), pAddrs->FriendlyName) == 0)
ACE_OS::strcmp (ACE_TEXT_CHAR_TO_TCHAR (net_if_char), pAddrs->FriendlyName) == 0)
{
PIP_ADAPTER_UNICAST_ADDRESS pUnicast = pAddrs->FirstUnicastAddress;
LPSOCKADDR sa = pUnicast->Address.lpSockaddr;
Expand Down

0 comments on commit d11971f

Please sign in to comment.