summaryrefslogtreecommitdiffstats
path: root/source3/auth/auth_builtin.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2010-01-10 14:24:22 +0100
committerVolker Lendecke <vl@samba.org>2010-01-10 20:56:16 +0100
commit081573091bc3f2b4f85164db51878e570377d4e8 (patch)
tree7c99ee67dffb7aeb35e37361919600292e3ce1f0 /source3/auth/auth_builtin.c
parent9bb4766bbaaec58989f1f544b7e2367691a09c53 (diff)
downloadsamba-081573091bc3f2b4f85164db51878e570377d4e8.tar.gz
samba-081573091bc3f2b4f85164db51878e570377d4e8.tar.xz
samba-081573091bc3f2b4f85164db51878e570377d4e8.zip
s3: Remove the typedef for "auth_serversupplied_info"
Diffstat (limited to 'source3/auth/auth_builtin.c')
-rw-r--r--source3/auth/auth_builtin.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/auth/auth_builtin.c b/source3/auth/auth_builtin.c
index dbd7937e376..f8f048a6f2b 100644
--- a/source3/auth/auth_builtin.c
+++ b/source3/auth/auth_builtin.c
@@ -35,7 +35,7 @@ static NTSTATUS check_guest_security(const struct auth_context *auth_context,
void *my_private_data,
TALLOC_CTX *mem_ctx,
const struct auth_usersupplied_info *user_info,
- auth_serversupplied_info **server_info)
+ struct auth_serversupplied_info **server_info)
{
/* mark this as 'not for me' */
NTSTATUS nt_status = NT_STATUS_NOT_IMPLEMENTED;
@@ -78,7 +78,7 @@ static NTSTATUS check_name_to_ntstatus_security(const struct auth_context *auth_
void *my_private_data,
TALLOC_CTX *mem_ctx,
const struct auth_usersupplied_info *user_info,
- auth_serversupplied_info **server_info)
+ struct auth_serversupplied_info **server_info)
{
NTSTATUS nt_status;
fstring user;
@@ -131,7 +131,7 @@ static NTSTATUS check_fixed_challenge_security(const struct auth_context *auth_c
void *my_private_data,
TALLOC_CTX *mem_ctx,
const struct auth_usersupplied_info *user_info,
- auth_serversupplied_info **server_info)
+ struct auth_serversupplied_info **server_info)
{
return NT_STATUS_NOT_IMPLEMENTED;
}