summaryrefslogtreecommitdiff
path: root/source4/librpc
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2007-11-01 13:22:20 +0100
committerStefan Metzmacher <metze@samba.org>2007-12-21 05:43:57 +0100
commit73eb2e3b4dab366dff8a871a4cb1482ef0000c34 (patch)
tree8fe47a2b8da5efd489bdbe975b3ba15dd00642a7 /source4/librpc
parentf603a0c579745c1ee910075f6a40fdd904658317 (diff)
downloadsamba-73eb2e3b4dab366dff8a871a4cb1482ef0000c34.tar.gz
samba-73eb2e3b4dab366dff8a871a4cb1482ef0000c34.tar.bz2
samba-73eb2e3b4dab366dff8a871a4cb1482ef0000c34.zip
r25784: fix compiler warning
metze (This used to be commit 9345933e1bb96170724db2534df7584fdddf0b49)
Diffstat (limited to 'source4/librpc')
-rw-r--r--source4/librpc/ndr/ndr_drsuapi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/librpc/ndr/ndr_drsuapi.c b/source4/librpc/ndr/ndr_drsuapi.c
index 689439c383..425df18d02 100644
--- a/source4/librpc/ndr/ndr_drsuapi.c
+++ b/source4/librpc/ndr/ndr_drsuapi.c
@@ -143,7 +143,7 @@ NTSTATUS ndr_pull_drsuapi_DsReplicaOID(struct ndr_pull *ndr, int ndr_flags, stru
_oid = data_blob_hex_string(ndr, &_oid_array);
NT_STATUS_HAVE_NO_MEMORY(_oid);
} else {
- _OID_PULL_CHECK(ber_read_OID_String(r->oid, _oid_array, &_oid));
+ _OID_PULL_CHECK(ber_read_OID_String(ndr, _oid_array, &_oid));
}
data_blob_free(&_oid_array);
talloc_steal(r->oid, _oid);