diff options
Diffstat (limited to 'src/msq')
-rw-r--r-- | src/msq/ntapi_msq_connect.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/msq/ntapi_msq_connect.c b/src/msq/ntapi_msq_connect.c index 532cac0..db4a314 100644 --- a/src/msq/ntapi_msq_connect.c +++ b/src/msq/ntapi_msq_connect.c @@ -67,7 +67,8 @@ static int32_t __msqctl_server_connect( /* connect */ if ((status = __ntapi->ipc_connect_by_attr( &rtdata->hmsqctl, - &msqctl->attr))) + &msqctl->attr, + false))) return status; /* update */ @@ -200,7 +201,8 @@ static int32_t __stdcall __msq_open( /* new msqueue? */ if (opcode == NT_TTY_MSQ_ALLOC) if ((status = __ntapi->ipc_connect_by_attr( - &hipc,&msg.svcinfo.attr))) + &hipc,&msg.svcinfo.attr, + false))) return status; /* all done */ @@ -334,7 +336,7 @@ int32_t __stdcall __ntapi_msq_open( /* ipc connect */ status = __ntapi->ipc_connect_by_symlink( - &hipc,hsymlink); + &hipc,hsymlink,false); __ntapi->zw_close( hsymlink); |