1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

r4160: fixed the file_type in ntcreatex reply on a named pipe. NT4 requires this to be right.

(This used to be commit e22de9734f)
This commit is contained in:
Andrew Tridgell 2004-12-12 08:33:08 +00:00 committed by Gerald (Jerry) Carter
parent 2f2b9c5662
commit f2dbe46107

View File

@ -267,6 +267,7 @@ static NTSTATUS ipc_open_ntcreatex(struct ntvfs_module_context *ntvfs,
ZERO_STRUCT(oi->ntcreatex.out);
oi->ntcreatex.out.fnum = p->fnum;
oi->ntcreatex.out.ipc_state = p->ipc_state;
oi->ntcreatex.out.file_type = FILE_TYPE_MESSAGE_MODE_PIPE;
return status;
}