mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
Add sufficient permission to the TCP handle to configure the IP address.
svn path=/trunk/; revision=14646
This commit is contained in:
parent
4c0e95ce09
commit
99bd564c01
1 changed files with 2 additions and 1 deletions
|
@ -77,7 +77,8 @@ NTSTATUS openTcpFile(PHANDLE tcpFile) {
|
||||||
NULL );
|
NULL );
|
||||||
|
|
||||||
status = ZwCreateFile( tcpFile,
|
status = ZwCreateFile( tcpFile,
|
||||||
SYNCHRONIZE | GENERIC_EXECUTE,
|
SYNCHRONIZE | GENERIC_EXECUTE |
|
||||||
|
GENERIC_READ | GENERIC_WRITE,
|
||||||
&objectAttributes,
|
&objectAttributes,
|
||||||
&ioStatusBlock,
|
&ioStatusBlock,
|
||||||
NULL,
|
NULL,
|
||||||
|
|
Loading…
Reference in a new issue