diff options
author | Tim Potter <tpot@samba.org> | 2001-09-12 06:39:50 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2001-09-12 06:39:50 +0000 |
commit | b800a36b1c81fb37ca963acdc49978ff065fb0d7 (patch) | |
tree | 4fe3edd68f6bbf7db66c75aa8c5c29b79d4dd01a /source3/include/auth.h | |
parent | 39d7983a470cc3470dd7126de35697d965817cb6 (diff) | |
download | samba-b800a36b1c81fb37ca963acdc49978ff065fb0d7.tar.gz samba-b800a36b1c81fb37ca963acdc49978ff065fb0d7.tar.xz samba-b800a36b1c81fb37ca963acdc49978ff065fb0d7.zip |
Some patches to authentication:
- the usersupplied_info now contains a smb_username (as it comes across on
the wire) and a unix_username (after being passed through mapping
functions)
- when doing security={server,domain} use the smb_username, otherwise use
the unix_username
(This used to be commit d34fd8ec0716127c7a68eeb8e77d1ae8cc07b547)
Diffstat (limited to 'source3/include/auth.h')
-rw-r--r-- | source3/include/auth.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/include/auth.h b/source3/include/auth.h index 028f8303da8..91230e4b6e5 100644 --- a/source3/include/auth.h +++ b/source3/include/auth.h @@ -71,8 +71,8 @@ typedef struct usersupplied_info AUTH_STR requested_domain; /* domain name string */ AUTH_STR domain; /* domain name after mapping */ - AUTH_STR requested_username; - AUTH_STR smb_username; /* user name string (after mapping) */ + AUTH_STR unix_username; /* username after mapping */ + AUTH_STR smb_username; /* username before mapping */ AUTH_STR wksta_name; /* workstation name (netbios calling name) unicode string */ } auth_usersupplied_info; |