forked from KolibriOS/kolibrios
fix typo in network drivers
git-svn-id: svn://kolibrios.org@1377 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
d003a8b8fe
commit
35c4be95ad
@ -302,7 +302,7 @@ align 4
|
||||
proc service_proc stdcall, ioctl:dword
|
||||
|
||||
mov edx, [ioctl]
|
||||
mov eax, [ebx+IOCTL.io_code]
|
||||
mov eax, [edx+IOCTL.io_code]
|
||||
|
||||
;------------------------------------------------------
|
||||
|
||||
|
@ -470,7 +470,7 @@ align 4
|
||||
proc service_proc stdcall, ioctl:dword
|
||||
|
||||
mov edx, [ioctl]
|
||||
mov eax, [ebx+IOCTL.io_code]
|
||||
mov eax, [edx+IOCTL.io_code]
|
||||
|
||||
;------------------------------------------------------
|
||||
|
||||
|
@ -133,7 +133,7 @@ service_proc:
|
||||
; pointer to IOCTL structure.
|
||||
mov edx, [esp+4] ; edx -> IOCTL
|
||||
; 2. Get request code and select a handler for the code.
|
||||
mov eax, [ebx+IOCTL.io_code]
|
||||
mov eax, [edx+IOCTL.io_code]
|
||||
test eax, eax ; check for SRV_GETVERSION
|
||||
jnz @f
|
||||
; 3. This is SRV_GETVERSION request, no input, 4 bytes output, API_VERSION.
|
||||
|
Loading…
Reference in New Issue
Block a user