Fix EN typos

Small corrections for grammar and fluency [en_US].

git-svn-id: svn://kolibrios.org@10058 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
2024-05-28 14:15:26 +00:00
parent f133c9d045
commit 349dbb6edf
8 changed files with 36 additions and 37 deletions

View File

@@ -61,7 +61,7 @@ macro tcp_checksum IP1, IP2 {
macro tcp_sendseqinit ptr {
push edi ;;;; FIXME: i dont like this static use of edi
push edi ;;;; FIXME: I don't like this static use of edi
mov edi, [ptr + TCP_SOCKET.ISS]
mov [ptr + TCP_SOCKET.SND_UP], edi
mov [ptr + TCP_SOCKET.SND_MAX], edi
@@ -77,7 +77,7 @@ macro tcp_rcvseqinit ptr {
push edi
mov edi, [ptr + TCP_SOCKET.IRS]
inc edi ; SYN ocupies a sequence number
inc edi ; SYN occupies a sequence number
mov [ptr + TCP_SOCKET.RCV_NXT], edi
mov [ptr + TCP_SOCKET.RCV_ADV], edi
pop edi
@@ -182,7 +182,7 @@ tcp_disconnect:
DEBUGF DEBUG_NETWORK_VERBOSE, "TCP_disconnect: %x\n", eax
cmp [eax + TCP_SOCKET.t_state], TCPS_ESTABLISHED
jb tcp_close ; Connection not yet synchronised, just get rid of the socket
jb tcp_close ; Connection not yet synchronized, just get rid of the socket
test [eax + SOCKET.options], SO_LINGER
jz .nolinger