mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 01:15:09 +00:00
[WSHTCPIP] Don't return NO_ERROR in unimplemented WSHIoctl. It only confuses programs. Return WSAEINVAL. CORE-12104
svn path=/trunk/; revision=73031
This commit is contained in:
parent
ca5719a178
commit
263afc07c3
1 changed files with 1 additions and 1 deletions
|
@ -355,7 +355,7 @@ WSHIoctl(
|
|||
|
||||
DPRINT1("Ioctl: Unknown IOCTL code: %d\n", IoControlCode);
|
||||
|
||||
return NO_ERROR;
|
||||
return WSAEINVAL;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue