summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2007-02-14 13:51:42 +0000
committerGünther Deschner <gd@samba.org>2007-02-14 13:51:42 +0000
commitda14487405cb1b06d007875604fe9731b9f337e7 (patch)
treed9c32ce8221c27e1a3f7ec40d1ce4cf861d50c93
parent9d217f0db3b18a24858e20fa4abed5a07331a0d1 (diff)
downloadsamba-da14487405cb1b06d007875604fe9731b9f337e7.tar.gz
samba-da14487405cb1b06d007875604fe9731b9f337e7.tar.xz
samba-da14487405cb1b06d007875604fe9731b9f337e7.zip
r21336: Fix indent (as pointed out by Volker).
Guenther
-rw-r--r--source/nsswitch/winbindd_user.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/nsswitch/winbindd_user.c b/source/nsswitch/winbindd_user.c
index e386efedb30..aa9ece7d893 100644
--- a/source/nsswitch/winbindd_user.c
+++ b/source/nsswitch/winbindd_user.c
@@ -286,14 +286,14 @@ static void getpwsid_sid2gid_recv(void *private_data, BOOL success, gid_t gid)
call worked or not. --jerry */
if ( s->gid == (gid_t)-1 ) {
- if (!success) {
- DEBUG(5, ("Could not query user's %s\\%s\n gid",
- s->domain->name, s->username));
- goto failed;
- }
+ if (!success) {
+ DEBUG(5, ("Could not query user's %s\\%s\n gid",
+ s->domain->name, s->username));
+ goto failed;
+ }
/* take what the sid2gid() call gave us */
- s->gid = gid;
+ s->gid = gid;
}
/* allow the nss backend to override the primary group ID.