summaryrefslogtreecommitdiffstats
path: root/source3/auth/auth_compat.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2010-01-10 14:16:04 +0100
committerVolker Lendecke <vl@samba.org>2010-01-10 20:56:16 +0100
commit9bb4766bbaaec58989f1f544b7e2367691a09c53 (patch)
tree2e9e7ff90f5a21131714fd9fbd43b27373bbc035 /source3/auth/auth_compat.c
parent6f0e7b946557d8955803e65186e9f924c5e469f2 (diff)
downloadsamba-9bb4766bbaaec58989f1f544b7e2367691a09c53.tar.gz
samba-9bb4766bbaaec58989f1f544b7e2367691a09c53.tar.xz
samba-9bb4766bbaaec58989f1f544b7e2367691a09c53.zip
s3: Remove the typedef for "auth_usersupplied_info"
Diffstat (limited to 'source3/auth/auth_compat.c')
-rw-r--r--source3/auth/auth_compat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/auth/auth_compat.c b/source3/auth/auth_compat.c
index 77a994828f4..dc046d5c0d5 100644
--- a/source3/auth/auth_compat.c
+++ b/source3/auth/auth_compat.c
@@ -38,7 +38,7 @@ return True if the password is correct, False otherwise
NTSTATUS check_plaintext_password(const char *smb_name, DATA_BLOB plaintext_password, auth_serversupplied_info **server_info)
{
struct auth_context *plaintext_auth_context = NULL;
- auth_usersupplied_info *user_info = NULL;
+ struct auth_usersupplied_info *user_info = NULL;
uint8_t chal[8];
NTSTATUS nt_status;
if (!NT_STATUS_IS_OK(nt_status = make_auth_context_subsystem(&plaintext_auth_context))) {
@@ -74,7 +74,7 @@ static NTSTATUS pass_check_smb(struct auth_context *actx,
NTSTATUS nt_status;
auth_serversupplied_info *server_info = NULL;
if (encrypted) {
- auth_usersupplied_info *user_info = NULL;
+ struct auth_usersupplied_info *user_info = NULL;
if (actx == NULL) {
return NT_STATUS_INTERNAL_ERROR;
}