summaryrefslogtreecommitdiffstats
path: root/private/ntos/se/adtutil.c
diff options
context:
space:
mode:
Diffstat (limited to 'private/ntos/se/adtutil.c')
-rw-r--r--private/ntos/se/adtutil.c51
1 files changed, 51 insertions, 0 deletions
diff --git a/private/ntos/se/adtutil.c b/private/ntos/se/adtutil.c
new file mode 100644
index 000000000..3fe9bdf65
--- /dev/null
+++ b/private/ntos/se/adtutil.c
@@ -0,0 +1,51 @@
+/*++
+
+Copyright (c) 1989 Microsoft Corporation
+
+Module Name:
+
+ adtutil.c - Security Auditing - Utility Routines
+
+Abstract:
+
+ This Module contains miscellaneous utility routines private to the
+ Security Auditing Component.
+
+Author:
+
+ Robert Reichel (robertre) September 10, 1991
+
+Environment:
+
+ Kernel Mode
+
+Revision History:
+
+--*/
+
+#include <nt.h>
+#include "tokenp.h"
+#include "adt.h"
+
+#ifdef ALLOC_PRAGMA
+#pragma alloc_text(PAGE,SepDumpString)
+#endif
+
+
+VOID
+SepDumpString(
+ IN PUNICODE_STRING String
+ )
+
+{
+ PAGED_CODE();
+
+ if ( String == NULL) {
+ KdPrint(("<NULL>"));
+ return;
+ }
+
+ KdPrint(("%Z",String->Buffer));
+
+}
+