summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2005-03-28 18:22:45 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:11:19 -0500
commitd4886d20dbea9f49381fad01c3e68280d1f666c1 (patch)
tree22bd73b6f26a0d05bef3deff78ad46dce0a0b96e /source4
parent4f4d18d66c2fd111864df688d911b151b22cefbe (diff)
downloadsamba-d4886d20dbea9f49381fad01c3e68280d1f666c1.tar.gz
samba-d4886d20dbea9f49381fad01c3e68280d1f666c1.tar.bz2
samba-d4886d20dbea9f49381fad01c3e68280d1f666c1.zip
r6098: fix parsing of empty union cases
metze (This used to be commit f3c64120a16289472bdc56329d39c7221d00b558)
Diffstat (limited to 'source4')
-rw-r--r--source4/build/pidl/idl.pm2
-rw-r--r--source4/build/pidl/idl.yp2
2 files changed, 2 insertions, 2 deletions
diff --git a/source4/build/pidl/idl.pm b/source4/build/pidl/idl.pm
index 9eea6679cc..636bcfb51c 100644
--- a/source4/build/pidl/idl.pm
+++ b/source4/build/pidl/idl.pm
@@ -2038,7 +2038,7 @@ sub
{{
"NAME" => "",
"TYPE" => "EMPTY",
- "PROPERTIES" => $_[0],
+ "PROPERTIES" => $_[1],
"POINTERS" => 0
}}
],
diff --git a/source4/build/pidl/idl.yp b/source4/build/pidl/idl.yp
index 3f670c7b2f..775e1fbd38 100644
--- a/source4/build/pidl/idl.yp
+++ b/source4/build/pidl/idl.yp
@@ -167,7 +167,7 @@ empty_element: property_list ';'
{{
"NAME" => "",
"TYPE" => "EMPTY",
- "PROPERTIES" => $_[0],
+ "PROPERTIES" => $_[1],
"POINTERS" => 0
}}
;