summaryrefslogtreecommitdiff
path: root/source3/libads/ldap.c
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2007-07-11 13:30:38 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:28:32 -0500
commit9d6f8ed5e7ece2a6bf7a9f51c7dc183932539ff5 (patch)
treec9112d80f000b21952de2a9dcdd8aff586cb24f8 /source3/libads/ldap.c
parentf05dcab9bf3e929f796746420b784525fdf6113e (diff)
downloadsamba-9d6f8ed5e7ece2a6bf7a9f51c7dc183932539ff5.tar.gz
samba-9d6f8ed5e7ece2a6bf7a9f51c7dc183932539ff5.tar.bz2
samba-9d6f8ed5e7ece2a6bf7a9f51c7dc183932539ff5.zip
r23837: Pass ADS_STRUCT and TALLOC_CTX down to ads_disp_sd.
Guenther (This used to be commit ad0a6d5703c35d48ab5bbfa8d6506d42e0cfb61d)
Diffstat (limited to 'source3/libads/ldap.c')
-rw-r--r--source3/libads/ldap.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/source3/libads/ldap.c b/source3/libads/ldap.c
index a1d1a2d649..32cc82c925 100644
--- a/source3/libads/ldap.c
+++ b/source3/libads/ldap.c
@@ -1837,7 +1837,9 @@ static void dump_sd(ADS_STRUCT *ads, const char *filed, struct berval **values)
talloc_destroy(ctx);
return;
}
- if (psd) ads_disp_sd(psd);
+ if (psd) {
+ ads_disp_sd(ads, ctx, psd);
+ }
prs_mem_free(&ps);
talloc_destroy(ctx);