diff options
author | Tim Potter <tpot@samba.org> | 2000-10-11 04:54:37 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2000-10-11 04:54:37 +0000 |
commit | cbee552bdb1a4692a19667175fbbf090a9597d71 (patch) | |
tree | 9723d153f7b70d6ce53f7c9c523d7a008efe71c0 /source3/smbd | |
parent | 7c4c781df2ef3d0ef772fdde215c72ded7445ab8 (diff) | |
download | samba-cbee552bdb1a4692a19667175fbbf090a9597d71.tar.gz samba-cbee552bdb1a4692a19667175fbbf090a9597d71.tar.bz2 samba-cbee552bdb1a4692a19667175fbbf090a9597d71.zip |
Don't initialise groups twice.
(This used to be commit 15d7f16bdc2ff4f2ae82871eb9f318ba45cf4d1c)
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/service.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/source3/smbd/service.c b/source3/smbd/service.c index e1e0fde32f..6d07562743 100644 --- a/source3/smbd/service.c +++ b/source3/smbd/service.c @@ -460,7 +460,6 @@ connection_struct *make_connection(char *service,char *user,char *password, int /* Find all the groups this uid is in and store them. Used by become_user() */ initialise_groups(conn->user, conn->uid, conn->gid); - initialize_groups(conn->user, conn->uid, conn->gid); get_current_groups(&conn->ngroups,&conn->groups); /* check number of connections */ |