From 9d6f8ed5e7ece2a6bf7a9f51c7dc183932539ff5 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Wed, 11 Jul 2007 13:30:38 +0000 Subject: r23837: Pass ADS_STRUCT and TALLOC_CTX down to ads_disp_sd. Guenther (This used to be commit ad0a6d5703c35d48ab5bbfa8d6506d42e0cfb61d) --- source3/libads/ldap.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'source3/libads/ldap.c') 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); -- cgit