Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2002-09-30 19:17:44 +0400
committerChristopher Faylor <me@cgf.cx>2002-09-30 19:17:44 +0400
commit6cae97d5dc6d2c8e5cb36826c22cf547c1ed6714 (patch)
tree7ed4c25a3a5b5432ba17f51e530f354d021f8f25 /winsup/cygwin/passwd.cc
parent66dca8bb0d03d1ede951e780f4c07c3115ab0875 (diff)
whitespace
Diffstat (limited to 'winsup/cygwin/passwd.cc')
-rw-r--r--winsup/cygwin/passwd.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/winsup/cygwin/passwd.cc b/winsup/cygwin/passwd.cc
index 22e8b3e20..462697b04 100644
--- a/winsup/cygwin/passwd.cc
+++ b/winsup/cygwin/passwd.cc
@@ -169,9 +169,9 @@ read_etc_passwd ()
DWORD siz;
if (OpenProcessToken (hMainProc, TOKEN_QUERY, &ptok))
- {
+ {
if (GetTokenInformation (ptok, TokenUser, &tu, sizeof tu,
- &siz)
+ &siz)
&& GetTokenInformation (ptok, TokenPrimaryGroup, &tg,
sizeof tg, &siz))
{
@@ -180,16 +180,16 @@ read_etc_passwd ()
"%s::%lu:%lu:%s:%s:/bin/sh",
cygheap->user.name (),
*GetSidSubAuthority (tu,
- *GetSidSubAuthorityCount(tu) - 1),
+ *GetSidSubAuthorityCount(tu) - 1),
*GetSidSubAuthority (tg,
- *GetSidSubAuthorityCount(tg) - 1),
+ *GetSidSubAuthorityCount(tg) - 1),
tu.string (strbuf), getenv ("HOME") ?: "/");
debug_printf ("Emulating /etc/passwd: %s", linebuf);
add_pwd_line (linebuf);
passwd_state = emulated;
}
CloseHandle (ptok);
- }
+ }
}
if (passwd_state != emulated)
{