diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2006-09-21 04:26:31 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:19:09 -0500 |
commit | d6e65c2318c54bacdbcf49336bb235eea126af71 (patch) | |
tree | 315bf36d2065974582197890db49dc5c675e0364 | |
parent | 448544935c6a62ba86e6594419e051c9dcc6299c (diff) | |
download | samba-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)
-rw-r--r-- | source4/pidl/lib/Parse/Pidl/ODL.pm | 4 |
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} |