Robert Shearman : advapi32: Replace some mixed tabs with spaces.

Alexandre Julliard julliard at wine.codeweavers.com
Tue Jun 13 05:58:45 CDT 2006


Module: wine
Branch: refs/heads/master
Commit: 8a4088d8a303b579fb9150132aa417fe3cf55714
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=8a4088d8a303b579fb9150132aa417fe3cf55714

Author: Robert Shearman <rob at codeweavers.com>
Date:   Mon Jun 12 16:37:49 2006 +0100

advapi32: Replace some mixed tabs with spaces.

---

 dlls/advapi32/security.c |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/dlls/advapi32/security.c b/dlls/advapi32/security.c
index 8f70186..3ee550a 100644
--- a/dlls/advapi32/security.c
+++ b/dlls/advapi32/security.c
@@ -3346,7 +3346,7 @@ static BOOL ParseStringSidToSid(LPCWSTR 
     {
         SetLastError(ERROR_INVALID_PARAMETER);
         TRACE("StringSid is NULL, returning FALSE\n");
-	return FALSE;
+        return FALSE;
     }
 
     *cBytes = ComputeStringSidSize(StringSid);
@@ -3359,7 +3359,7 @@ static BOOL ParseStringSidToSid(LPCWSTR 
     if (StringSid[0] == 'S' && StringSid[1] == '-') /* S-R-I-S-S */
     {
         DWORD i = 0, identAuth;
-	DWORD csubauth = ((*cBytes - sizeof(SID)) / sizeof(DWORD)) + 1;
+        DWORD csubauth = ((*cBytes - sizeof(SID)) / sizeof(DWORD)) + 1;
 
         StringSid += 2; /* Advance to Revision */
         pisid->Revision = atoiW(StringSid);
@@ -3375,10 +3375,10 @@ static BOOL ParseStringSidToSid(LPCWSTR 
             goto lend; /* ERROR_INVALID_SID */
         }
 
-	pisid->SubAuthorityCount = csubauth;
+        pisid->SubAuthorityCount = csubauth;
 
         /* Advance to identifier authority */
-	while (*StringSid && *StringSid != '-')
+        while (*StringSid && *StringSid != '-')
             StringSid++;
         if (*StringSid == '-')
             StringSid++;
@@ -3401,14 +3401,14 @@ static BOOL ParseStringSidToSid(LPCWSTR 
             StringSid++;
 
         while (*StringSid)
-	{	
-	    while (*StringSid && *StringSid != '-')
+        {
+            while (*StringSid && *StringSid != '-')
                 StringSid++;
 
             pisid->SubAuthority[i++] = atoiW(StringSid);
         }
 
-	if (i != pisid->SubAuthorityCount)
+        if (i != pisid->SubAuthorityCount)
             goto lend; /* ERROR_INVALID_SID */
 
         bret = TRUE;




More information about the wine-cvs mailing list