From: Alex Ionescu Date: Tue, 8 Nov 2005 17:22:26 +0000 (+0000) Subject: - Remove unimplemented macro in SeOpenObjectAuditAlarm and replace it with a DPRINT1... X-Git-Tag: backups/ros-branch-0_2_9@19949~839 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=402f8f2ea5e3d52fd2b8755185baf5208275284c - Remove unimplemented macro in SeOpenObjectAuditAlarm and replace it with a DPRINT1; that way callers won't freeze while calling it. svn path=/trunk/; revision=19060 --- diff --git a/reactos/ntoskrnl/ob/security.c b/reactos/ntoskrnl/ob/security.c index eef9009c6e6..376d439e7da 100644 --- a/reactos/ntoskrnl/ob/security.c +++ b/reactos/ntoskrnl/ob/security.c @@ -262,9 +262,8 @@ ObLogSecurityDescriptor(IN PSECURITY_DESCRIPTOR InputSecurityDescriptor, OUT PSECURITY_DESCRIPTOR *OutputSecurityDescriptor, IN ULONG RefBias) { - DPRINT1("ObLogSecurityDescriptor is not implemented!\n"); - /* HACK: Return the same descriptor back */ + DPRINT1("ObLogSecurityDescriptor is not implemented!\n"); *OutputSecurityDescriptor = InputSecurityDescriptor; return STATUS_SUCCESS; } diff --git a/reactos/ntoskrnl/se/audit.c b/reactos/ntoskrnl/se/audit.c index 4f90c6d7b3f..9455418d554 100644 --- a/reactos/ntoskrnl/se/audit.c +++ b/reactos/ntoskrnl/se/audit.c @@ -225,7 +225,7 @@ SeOpenObjectAuditAlarm(IN PUNICODE_STRING ObjectTypeName, IN KPROCESSOR_MODE AccessMode, OUT PBOOLEAN GenerateOnClose) { - UNIMPLEMENTED; + DPRINT1("SeOpenObjectAuditAlarm is UNIMPLEMENTED!\n"); }