mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
Swap the port part of the address so it's reported correctly.
svn path=/trunk/; revision=13937
This commit is contained in:
parent
76c165b428
commit
6cc6c8571b
1 changed files with 1 additions and 1 deletions
|
@ -621,7 +621,7 @@ NTSTATUS DispTdiQueryInformation(
|
|||
Address->TAAddressCount = 1;
|
||||
Address->Address[0].AddressLength = TDI_ADDRESS_LENGTH_IP;
|
||||
Address->Address[0].AddressType = TDI_ADDRESS_TYPE_IP;
|
||||
Address->Address[0].Address[0].sin_port = AddrFile->Port;
|
||||
Address->Address[0].Address[0].sin_port = htons(AddrFile->Port);
|
||||
Address->Address[0].Address[0].in_addr =
|
||||
AddrFile->Address.Address.IPv4Address;
|
||||
RtlZeroMemory(
|
||||
|
|
Loading…
Reference in a new issue