Commit in reactos/lib/advapi32/sec on MAIN
trustee.c+10-61.1 -> 1.2
- Remove Wine-isms from advapi32 because it's a ReactOS DLL!
- Enforce a consistent coding style.
- Remove -D__REACTOS__

reactos/lib/advapi32/sec
trustee.c 1.1 -> 1.2
diff -u -r1.1 -r1.2
--- trustee.c	11 Dec 2004 00:21:33 -0000	1.1
+++ trustee.c	12 Dec 2004 15:16:49 -0000	1.2
@@ -1,14 +1,15 @@
-/* $Id: trustee.c,v 1.1 2004/12/11 00:21:33 weiden Exp $
+/* $Id: trustee.c,v 1.2 2004/12/12 15:16:49 ekohl Exp $
  *
  * COPYRIGHT:       See COPYING in the top level directory
  * PROJECT:         ReactOS system libraries
- * FILE:            lib/advapi32/sec/ac.c
- * PURPOSE:         ACL/ACE functions
+ * FILE:            lib/advapi32/sec/trustee.c
+ * PURPOSE:         Trustee functions
  */
 
 #include "advapi32.h"
 
-#include "wine/debug.h"
+#define NDEBUG
+#include "debug.h"
 
 
 /******************************************************************************
@@ -25,6 +26,7 @@
     pTrustee->ptstrName = (LPSTR) pSid;
 }
 
+
 /******************************************************************************
  * BuildTrusteeWithSidW [ADVAPI32.@]
  */
@@ -39,12 +41,13 @@
     pTrustee->ptstrName = (LPWSTR) pSid;
 }
 
+
 /******************************************************************************
  * BuildTrusteeWithNameA [ADVAPI32.@]
  */
 VOID WINAPI BuildTrusteeWithNameA(PTRUSTEEA pTrustee, LPSTR name)
 {
-    DPRINT("%p %s\n", pTrustee, debugstr_a(name) );
+    DPRINT("%p %s\n", pTrustee, name);
 
     pTrustee->pMultipleTrustee = NULL;
     pTrustee->MultipleTrusteeOperation = NO_MULTIPLE_TRUSTEE;
@@ -53,12 +56,13 @@
     pTrustee->ptstrName = name;
 }
 
+
 /******************************************************************************
  * BuildTrusteeWithNameW [ADVAPI32.@]
  */
 VOID WINAPI BuildTrusteeWithNameW(PTRUSTEEW pTrustee, LPWSTR name)
 {
-    DPRINT("%p %s\n", pTrustee, debugstr_w(name) );
+    DPRINT("%p %s\n", pTrustee, name);
 
     pTrustee->pMultipleTrustee = NULL;
     pTrustee->MultipleTrusteeOperation = NO_MULTIPLE_TRUSTEE;
CVSspam 0.2.8