1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

r21336: Fix indent (as pointed out by Volker).

Guenther
This commit is contained in:
Günther Deschner 2007-02-14 13:51:42 +00:00 committed by Gerald (Jerry) Carter
parent 9463211bf3
commit dcbf7a1250

View File

@ -286,14 +286,14 @@ static void getpwsid_sid2gid_recv(void *private_data, BOOL success, gid_t gid)
call worked or not. --jerry */ call worked or not. --jerry */
if ( s->gid == (gid_t)-1 ) { if ( s->gid == (gid_t)-1 ) {
if (!success) { if (!success) {
DEBUG(5, ("Could not query user's %s\\%s\n gid", DEBUG(5, ("Could not query user's %s\\%s\n gid",
s->domain->name, s->username)); s->domain->name, s->username));
goto failed; goto failed;
} }
/* take what the sid2gid() call gave us */ /* take what the sid2gid() call gave us */
s->gid = gid; s->gid = gid;
} }
/* allow the nss backend to override the primary group ID. /* allow the nss backend to override the primary group ID.