fix typo in network drivers

git-svn-id: svn://kolibrios.org@1377 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
CleverMouse 2010-01-22 11:09:23 +00:00
parent d003a8b8fe
commit 35c4be95ad
3 changed files with 3 additions and 3 deletions

View File

@ -302,7 +302,7 @@ align 4
proc service_proc stdcall, ioctl:dword proc service_proc stdcall, ioctl:dword
mov edx, [ioctl] mov edx, [ioctl]
mov eax, [ebx+IOCTL.io_code] mov eax, [edx+IOCTL.io_code]
;------------------------------------------------------ ;------------------------------------------------------

View File

@ -470,7 +470,7 @@ align 4
proc service_proc stdcall, ioctl:dword proc service_proc stdcall, ioctl:dword
mov edx, [ioctl] mov edx, [ioctl]
mov eax, [ebx+IOCTL.io_code] mov eax, [edx+IOCTL.io_code]
;------------------------------------------------------ ;------------------------------------------------------

View File

@ -133,7 +133,7 @@ service_proc:
; pointer to IOCTL structure. ; pointer to IOCTL structure.
mov edx, [esp+4] ; edx -> IOCTL mov edx, [esp+4] ; edx -> IOCTL
; 2. Get request code and select a handler for the code. ; 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 test eax, eax ; check for SRV_GETVERSION
jnz @f jnz @f
; 3. This is SRV_GETVERSION request, no input, 4 bytes output, API_VERSION. ; 3. This is SRV_GETVERSION request, no input, 4 bytes output, API_VERSION.