Skip to content

Commit

Permalink
fix domain copy problem not copying resolve info
Browse files Browse the repository at this point in the history
  • Loading branch information
radkesvat committed May 10, 2024
1 parent ad36f46 commit be49573
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ww/utils/utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ void socketContextAddrCopy(socket_context_t *dest, const socket_context_t *const
{
socketContextDomainSet(dest, source->domain, source->domain_len);
}

dest->domain_resolved = source->domain_resolved;
if (source->domain_resolved)
{
dest->domain_resolved = true;
Expand Down

0 comments on commit be49573

Please sign in to comment.