From 23159453d3e61e2ad47fe6f86f3763280a11ea0c Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Tue, 1 Jun 2010 20:27:03 +1000 Subject: s3:auth Rename user_info->smb_name -> user_info->client.account_name This is closer to the structure I want for a common struct auth_usersupplied_info. Andrew Bartlett --- source3/include/auth.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'source3/include/auth.h') diff --git a/source3/include/auth.h b/source3/include/auth.h index 9e55eeec59..e7f8e54dd4 100644 --- a/source3/include/auth.h +++ b/source3/include/auth.h @@ -27,12 +27,14 @@ struct auth_usersupplied_info { DATA_BLOB plaintext_password; bool encrypted; + struct { + char *account_name; /* username before mapping */ + } client; 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 */ - char *smb_name; /* username before mapping */ const char *workstation_name; /* workstation name (netbios calling * name) unicode string */ -- cgit