whitespace cleanup

This commit is contained in:
Christopher Faylor
2003-03-09 20:31:07 +00:00
parent c367dfd02c
commit a113a3c540
15 changed files with 55 additions and 56 deletions

View File

@@ -83,7 +83,7 @@ cygpsid::get_id (BOOL search_grp, int *type)
else if ((gr = internal_getgrsid (*this)))
id = gr->gr_gid;
if (id != ILLEGAL_UID)
{
{
if (type)
*type = GROUP;
return id;
@@ -97,7 +97,7 @@ cygpsid::get_id (BOOL search_grp, int *type)
else if ((pw = internal_getpwsid (*this)))
id = pw->pw_uid;
if (id != ILLEGAL_UID && type)
*type = USER;
*type = USER;
}
return id;
}