diff options
author | Andrew Bartlett <abartlet@samba.org> | 2005-07-22 04:18:16 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:29:55 -0500 |
commit | cd882fc78dfc228d845d2c13ed5afa3fb2d67073 (patch) | |
tree | 54de28eacd2913f13caf1b0a3bc504c52037c21b /source4/auth/auth_developer.c | |
parent | b16362fab65d0700bd6a8cf6569a9e21c7e6b069 (diff) | |
download | samba-cd882fc78dfc228d845d2c13ed5afa3fb2d67073.tar.gz samba-cd882fc78dfc228d845d2c13ed5afa3fb2d67073.tar.bz2 samba-cd882fc78dfc228d845d2c13ed5afa3fb2d67073.zip |
r8701: Fix up auth_developer for recent changes.
Andrew Bartlett
(This used to be commit 1bc5a1190765571719dd0aaacef1413bba812617)
Diffstat (limited to 'source4/auth/auth_developer.c')
-rw-r--r-- | source4/auth/auth_developer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/auth/auth_developer.c b/source4/auth/auth_developer.c index fe0eb12cde..57bda22910 100644 --- a/source4/auth/auth_developer.c +++ b/source4/auth/auth_developer.c @@ -48,7 +48,7 @@ static NTSTATUS name_to_ntstatus_check_password(struct auth_method_context *ctx, struct auth_serversupplied_info *server_info; fstring user; uint32_t error_num; - fstrcpy(user, user_info->account_name); + fstrcpy(user, user_info->client.account_name); if (strncasecmp("NT_STATUS", user, strlen("NT_STATUS")) == 0) { nt_status = nt_status_string_to_code(user); |