summaryrefslogtreecommitdiff
path: root/source3/auth
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2006-08-29 19:14:25 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:38:59 -0500
commit3bc4fd1bb9bfbd0e0efd89d47c50bf798e5a1481 (patch)
tree429afd025bad12ab90486ba4404fc9293f8bdf45 /source3/auth
parent164a7600512d85bb9871f71131927802bbbd879d (diff)
downloadsamba-3bc4fd1bb9bfbd0e0efd89d47c50bf798e5a1481.tar.gz
samba-3bc4fd1bb9bfbd0e0efd89d47c50bf798e5a1481.tar.bz2
samba-3bc4fd1bb9bfbd0e0efd89d47c50bf798e5a1481.zip
r17924: Get rid of warnings now that talloc is merged.
Destructors now take a pointer to the "real" destroyed object as an argument. Volker (This used to be commit 70edd716ef0ccb218fe18d1233bd30abe46b62bf)
Diffstat (limited to 'source3/auth')
-rw-r--r--source3/auth/auth_util.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/source3/auth/auth_util.c b/source3/auth/auth_util.c
index 26d1eb710f..c2f32f4f95 100644
--- a/source3/auth/auth_util.c
+++ b/source3/auth/auth_util.c
@@ -513,11 +513,8 @@ NT_USER_TOKEN *get_root_nt_token( void )
return token;
}
-static int server_info_dtor(void *p)
+static int server_info_dtor(auth_serversupplied_info *server_info)
{
- auth_serversupplied_info *server_info =
- talloc_get_type_abort(p, auth_serversupplied_info);
-
if (server_info->sam_account != NULL) {
TALLOC_FREE(server_info->sam_account);
}