diff options
Diffstat (limited to 'source4/auth/auth_anonymous.c')
-rw-r--r-- | source4/auth/auth_anonymous.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/auth/auth_anonymous.c b/source4/auth/auth_anonymous.c index 4325550413..82aa69c72a 100644 --- a/source4/auth/auth_anonymous.c +++ b/source4/auth/auth_anonymous.c @@ -37,7 +37,7 @@ static NTSTATUS anonymous_check_password(struct auth_method_context *ctx, const struct auth_usersupplied_info *user_info, struct auth_serversupplied_info **_server_info) { - if (user_info->account_name && *user_info->account_name) { + if (user_info->client.account_name && *user_info->client.account_name) { return NT_STATUS_NOT_IMPLEMENTED; } |