1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-27 14:04:05 +03:00

Debug output formatting change. I'm trying to combine log lines that

really should be together.  Chris -)-----
This commit is contained in:
Christopher R. Hertel -
parent c626828471
commit 8880fc58fa

View File

@ -184,11 +184,11 @@ int setup_groups(char *user, int uid, int gid, int *p_ngroups, GID_T **p_groups)
(*p_groups) = groups;
DEBUG(3,("%s is in %d groups\n",user,ngroups));
for (i=0;i<ngroups;i++) {
DEBUG(3,("%d ",(int)groups[i]));
DEBUG( 3, ( "%s is in %d groups: ", user, ngroups ) );
for (i = 0; i < ngroups; i++ ) {
DEBUG( 3, ( "%s%d", (i ? ", " : ""), (int)groups[i] ) );
}
DEBUG(3,("\n"));
DEBUG( 3, ( "\n" ) );
return 0;
}