mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 05:35:40 +00:00
[KMTEST] TcpIpConnect: Fix harmless typos (#299)
- 1 s/ok_bool_true/ok/, overkill though harmless. - 1 s/ntohs/htons/, typo though harmless. ROSTESTS-274
This commit is contained in:
parent
991d33c5d1
commit
1971137a5f
1 changed files with 2 additions and 2 deletions
|
@ -57,7 +57,7 @@ AcceptProc(
|
|||
ok(Error == 0, "");
|
||||
|
||||
ListenSocket = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
|
||||
ok_bool_true(ListenSocket != INVALID_SOCKET, "socket failed");
|
||||
ok(ListenSocket != INVALID_SOCKET, "socket failed");
|
||||
|
||||
ZeroMemory(&ListenAddress, sizeof(ListenAddress));
|
||||
ListenAddress.sin_addr.S_un.S_addr = inet_addr("127.0.0.1");
|
||||
|
@ -77,7 +77,7 @@ AcceptProc(
|
|||
ok(AcceptSocket != INVALID_SOCKET, "\n");
|
||||
ok_eq_long(AcceptAddressLength, sizeof(AcceptAddress));
|
||||
ok_eq_hex(AcceptAddress.sin_addr.S_un.S_addr, inet_addr("127.0.0.1"));
|
||||
ok_eq_hex(AcceptAddress.sin_port, ntohs(TEST_CONNECT_CLIENT_PORT));
|
||||
ok_eq_hex(AcceptAddress.sin_port, htons(TEST_CONNECT_CLIENT_PORT));
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue