diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-03-23 01:00:23 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:11:12 -0500 |
commit | df8c102ec9c64a44ae4b7aa3a47bdf33178f2dcf (patch) | |
tree | 36e10225e29f12da40cb415106012c74c56e9298 /source4/librpc/ndr/ndr_drsuapi.c | |
parent | 8307c19c78ec6350d4eb10020ba10310a76d5a12 (diff) | |
download | samba-df8c102ec9c64a44ae4b7aa3a47bdf33178f2dcf.tar.gz samba-df8c102ec9c64a44ae4b7aa3a47bdf33178f2dcf.tar.bz2 samba-df8c102ec9c64a44ae4b7aa3a47bdf33178f2dcf.zip |
r5986: Fix the build. Metze, could you please verify that this fix is correct?
(This used to be commit f3006e623bcf65a05238fbd3362ee958b948e70b)
Diffstat (limited to 'source4/librpc/ndr/ndr_drsuapi.c')
-rw-r--r-- | source4/librpc/ndr/ndr_drsuapi.c | 6 |
1 files 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); |