summaryrefslogtreecommitdiff
path: root/source4/pidl/lib
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2006-09-21 04:26:31 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:19:09 -0500
commitd6e65c2318c54bacdbcf49336bb235eea126af71 (patch)
tree315bf36d2065974582197890db49dc5c675e0364 /source4/pidl/lib
parent448544935c6a62ba86e6594419e051c9dcc6299c (diff)
downloadsamba-d6e65c2318c54bacdbcf49336bb235eea126af71.tar.gz
samba-d6e65c2318c54bacdbcf49336bb235eea126af71.tar.bz2
samba-d6e65c2318c54bacdbcf49336bb235eea126af71.zip
r18767: Fix [ref] pointer in object oriented interfaces. Removes a
bunch of warnings when compiling dcom.idl. (This used to be commit 6f6dd761460e063eda3c1d0706358cb336c181fd)
Diffstat (limited to 'source4/pidl/lib')
-rw-r--r--source4/pidl/lib/Parse/Pidl/ODL.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/pidl/lib/Parse/Pidl/ODL.pm b/source4/pidl/lib/Parse/Pidl/ODL.pm
index b5d65b6239..c8d1de3d43 100644
--- a/source4/pidl/lib/Parse/Pidl/ODL.pm
+++ b/source4/pidl/lib/Parse/Pidl/ODL.pm
@@ -38,8 +38,8 @@ sub FunctionAddObjArgs($)
});
unshift(@{$e->{ELEMENTS}}, {
'NAME' => 'ORPCthat',
- 'POINTERS' => 0,
- 'PROPERTIES' => { 'out' => '1' },
+ 'POINTERS' => 1,
+ 'PROPERTIES' => { 'out' => '1', 'ref' => '1' },
'TYPE' => 'ORPCTHAT',
'FILE' => $e->{FILE},
'LINE' => $e->{LINE}