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 | 1bc5a1190765571719dd0aaacef1413bba812617 (patch) | |
tree | 5a6ba6e347d20d5eadad80d0f672566db3864c31 /source/auth/auth_developer.c | |
parent | ecbd2235a3e2be937440fa1dc0aecc5a047eda88 (diff) | |
download | samba-1bc5a1190765571719dd0aaacef1413bba812617.tar.gz |
r8701: Fix up auth_developer for recent changes.
Andrew Bartlett
Diffstat (limited to 'source/auth/auth_developer.c')
-rw-r--r-- | source/auth/auth_developer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/auth/auth_developer.c b/source/auth/auth_developer.c index fe0eb12cded..57bda229109 100644 --- a/source/auth/auth_developer.c +++ b/source/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); |