Fixed a typo

svn path=/trunk/; revision=807
This commit is contained in:
Eric Kohl 1999-12-01 15:08:31 +00:00
parent d2c016b5ab
commit 2eccd28b8f
2 changed files with 5 additions and 5 deletions

View file

@ -71,4 +71,4 @@ _MmSafeCopyToUser:
ret
_MemSafeCopyToUser:
_MemSafeCopyToUserEnd:

View file

@ -1,4 +1,4 @@
/* $Id: port.c,v 1.10 1999/11/25 10:47:58 dwelch Exp $
/* $Id: port.c,v 1.11 1999/12/01 15:08:31 ekohl Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@ -28,6 +28,7 @@
//#define NDEBUG
#include <internal/debug.h>
/* TYPES ********************************************************************/
#define EPORT_INACTIVE (0)
@ -69,7 +70,7 @@ NTSTATUS NiInitPort(VOID)
{
ExPortType = ExAllocatePool(NonPagedPool,sizeof(OBJECT_TYPE));
RtlInitUnicodeString(&ExPortType->TypeName,L"Event");
RtlInitUnicodeString(&ExPortType->TypeName,L"Port");
ExPortType->MaxObjects = ULONG_MAX;
ExPortType->MaxHandles = ULONG_MAX;
@ -173,7 +174,7 @@ NTSTATUS STDCALL NtAcceptConnectPort (IN HANDLE PortHandle,
NamedPort->ConnectingPort = NULL;
ObDereferenceObject(NamedPort);
return(STATUS_SUCCESS);
}
@ -340,7 +341,6 @@ NTSTATUS STDCALL NtQueryInformationPort (IN HANDLE PortHandle,
UNIMPLEMENTED;
}
NTSTATUS STDCALL NtReplyPort (IN HANDLE PortHandle,
IN PLPC_MESSAGE LpcReply /* guess */)
{