1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

r5986: Fix the build. Metze, could you please verify that this fix is correct?

(This used to be commit f3006e623b)
This commit is contained in:
Jelmer Vernooij 2005-03-23 01:00:23 +00:00 committed by Gerald (Jerry) Carter
parent 8307c19c78
commit df8c102ec9

View File

@ -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);