diff options
author | Andrew Bartlett <abartlet@samba.org> | 2010-06-01 21:08:38 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2010-06-07 23:34:28 +1000 |
commit | deabae191b34bdd350c7fe6c0c9ad05defa8d08c (patch) | |
tree | f42612c8f6907738940447afdb659db3d57644ff /source3/include | |
parent | e21935fc74e8bd64bbd231d6388ea424708c3acd (diff) | |
download | samba-deabae191b34bdd350c7fe6c0c9ad05defa8d08c.tar.gz samba-deabae191b34bdd350c7fe6c0c9ad05defa8d08c.tar.bz2 samba-deabae191b34bdd350c7fe6c0c9ad05defa8d08c.zip |
s3:auth Rename user_info->client_domain -> user_info->client.domain_name
This is closer to the structure I want for a common struct
auth_usersupplied_info.
Andrew Bartlett
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/auth.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/auth.h b/source3/include/auth.h index 71b944f804..5a494537d1 100644 --- a/source3/include/auth.h +++ b/source3/include/auth.h @@ -29,10 +29,10 @@ struct auth_usersupplied_info { bool encrypted; struct { char *account_name; /* username before/after mapping */ + char *domain_name; /* username before/after mapping */ } client, mapped; bool was_mapped; /* Did the username map actually match? */ - char *client_domain; /* domain name string */ char *domain; /* domain name after mapping */ char *internal_username; /* username after mapping */ const char *workstation_name; /* workstation name (netbios calling |