summaryrefslogtreecommitdiff
path: root/source4/pidl
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2006-11-23 18:26:55 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:28:27 -0500
commita2a151a04621e3e2252e207b54526c75deb039d9 (patch)
tree63154a7351efa49cac383003b3ac1364194bf2ba /source4/pidl
parent60e7b4d995e83176647c3199ef31c6bb6558ab83 (diff)
downloadsamba-a2a151a04621e3e2252e207b54526c75deb039d9.tar.gz
samba-a2a151a04621e3e2252e207b54526c75deb039d9.tar.bz2
samba-a2a151a04621e3e2252e207b54526c75deb039d9.zip
r19866: Fix test compilation.
(This used to be commit 2a3196db9dae9f15bbe2ffa36ce1204daf4e701c)
Diffstat (limited to 'source4/pidl')
-rwxr-xr-xsource4/pidl/tests/ndr_fullptr.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/pidl/tests/ndr_fullptr.pl b/source4/pidl/tests/ndr_fullptr.pl
index d9f2cd6b02..569f0060a3 100755
--- a/source4/pidl/tests/ndr_fullptr.pl
+++ b/source4/pidl/tests/ndr_fullptr.pl
@@ -17,11 +17,11 @@ test_samba4_ndr("fullptr-push-dup",
'
struct ndr_push *ndr = ndr_push_init();
uint32_t v = 13;
- struct echo_TestRef r;
+ struct echo_TestFull r;
r.in.x = &v;
r.in.y = &v;
- if (NT_STATUS_IS_ERR(ndr_push_echo_TestRef(ndr, NDR_IN, &r))) {
+ if (NT_STATUS_IS_ERR(ndr_push_echo_TestFull(ndr, NDR_IN, &r))) {
fprintf(stderr, "push failed\n");
return 1;
}