From df8c102ec9c64a44ae4b7aa3a47bdf33178f2dcf Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Wed, 23 Mar 2005 01:00:23 +0000 Subject: r5986: Fix the build. Metze, could you please verify that this fix is correct? (This used to be commit f3006e623bcf65a05238fbd3362ee958b948e70b) --- source4/librpc/ndr/ndr_drsuapi.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source4/librpc/ndr/ndr_drsuapi.c b/source4/librpc/ndr/ndr_drsuapi.c index 9654e63720..f2f8469f5e 100644 --- a/source4/librpc/ndr/ndr_drsuapi.c +++ b/source4/librpc/ndr/ndr_drsuapi.c @@ -43,10 +43,10 @@ void ndr_print_drsuapi_DsReplicaObjectListItemEx(struct ndr_print *ndr, const ch ndr_print_ptr(ndr, "next_object", r->next_object); ndr_print_drsuapi_DsReplicaObject(ndr, "object", &r->object); ndr_print_uint32(ndr, "unknown1", r->unknown1); - ndr_print_ptr(ndr, "guid", r->guid); + ndr_print_ptr(ndr, "parent_object_guid", r->parent_object_guid); ndr->depth++; - if (r->guid) { - ndr_print_GUID(ndr, "guid", r->guid); + if (r->parent_object_guid) { + ndr_print_GUID(ndr, "parent_object_guid", r->parent_object_guid); } ndr->depth--; ndr_print_ptr(ndr, "meta_data_ctr", r->meta_data_ctr); -- cgit