summaryrefslogtreecommitdiff
path: root/source3/include/smb.h
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2000-06-08 17:50:19 +0000
committerJeremy Allison <jra@samba.org>2000-06-08 17:50:19 +0000
commit28555ec92e061aafb31a9b071caf00e44132c70f (patch)
treed83686ff0f944834ce7dfb258d6fdcbdf6d3b264 /source3/include/smb.h
parentce17aace9944541f430645c373025ad98dded75d (diff)
downloadsamba-28555ec92e061aafb31a9b071caf00e44132c70f.tar.gz
samba-28555ec92e061aafb31a9b071caf00e44132c70f.tar.bz2
samba-28555ec92e061aafb31a9b071caf00e44132c70f.zip
include/smb.h: Removed NET_USER_3 struct from user struct. It doesn't belong there (yet)
as there is no infrastructure for it. Replaced it with a dynamic array of group SIDs plus a user. passdb/passdb.c: Added setup_user_sids() function. This is where the lookup should be done, eventually calling winbind. smbd/password.c: Changed to call setup_user_sids(). Removed spurious DEBUG(0) statements. smbd/reply.c: Removed extra parameter to register_vuid(). Jeremy. (This used to be commit 425f4ad9a5e0e7d49620276100ade7a0cae47011)
Diffstat (limited to 'source3/include/smb.h')
-rw-r--r--source3/include/smb.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/include/smb.h b/source3/include/smb.h
index 0efced2e38..2d1cb47757 100644
--- a/source3/include/smb.h
+++ b/source3/include/smb.h
@@ -1696,7 +1696,8 @@ typedef struct
int n_groups;
gid_t *groups;
- NET_USER_INFO_3 usr;
+ DOM_SID user_sid;
+ DOM_SID *group_sids;
/* per-user authentication information on NT RPCs */
/* lkclXXXX - THIS SHOULD NOT BE HERE! */