diff options
author | Stefan Metzmacher <metze@samba.org> | 2011-08-01 11:32:48 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2011-08-01 13:44:26 +0200 |
commit | 98cc4c8419121246b46f5a5492dd9e4e45cf5aad (patch) | |
tree | a27d4fe726b0661703961143c2e3e94f942cba16 | |
parent | e7a7a2451fc4821a265ec3d1495085ea142a4554 (diff) | |
download | samba-98cc4c8419121246b46f5a5492dd9e4e45cf5aad.tar.gz samba-98cc4c8419121246b46f5a5492dd9e4e45cf5aad.tar.bz2 samba-98cc4c8419121246b46f5a5492dd9e4e45cf5aad.zip |
pidl:NDR/Server: use interface->{UUID} and {NAME} instead of the raw {PROPERTIES}
metze
-rw-r--r-- | pidl/lib/Parse/Pidl/Samba4/NDR/Server.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pidl/lib/Parse/Pidl/Samba4/NDR/Server.pm b/pidl/lib/Parse/Pidl/Samba4/NDR/Server.pm index 30ad7a4e42..1d51fa1526 100644 --- a/pidl/lib/Parse/Pidl/Samba4/NDR/Server.pm +++ b/pidl/lib/Parse/Pidl/Samba4/NDR/Server.pm @@ -77,8 +77,8 @@ sub Boilerplate_Iface($) my($interface) = shift; my $name = $interface->{NAME}; my $uname = uc $name; - my $uuid = lc($interface->{PROPERTIES}->{uuid}); - my $if_version = $interface->{PROPERTIES}->{version}; + my $uuid = lc($interface->{UUID}); + my $if_version = $interface->{VERSION}; pidl " static NTSTATUS $name\__op_bind(struct dcesrv_call_state *dce_call, const struct dcesrv_interface *iface, uint32_t if_version) |