diff options
author | Stefan Metzmacher <metze@samba.org> | 2010-09-21 03:10:10 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2010-09-28 23:06:44 +0200 |
commit | a73a2abb3a2ec79016ddcf5f0994025dd705975d (patch) | |
tree | a6f229113f4c6159dd78db0bc29545db7c38b49d /pidl | |
parent | 65c5278f4d8e07275db02f146afb847d91cd6596 (diff) | |
download | samba-a73a2abb3a2ec79016ddcf5f0994025dd705975d.tar.gz |
pidl/Python: use has_property($d, "noopnum") helper function
metze
Diffstat (limited to 'pidl')
-rw-r--r-- | pidl/lib/Parse/Pidl/Samba4/Python.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pidl/lib/Parse/Pidl/Samba4/Python.pm b/pidl/lib/Parse/Pidl/Samba4/Python.pm index e9c9567eb2f..45d33b80553 100644 --- a/pidl/lib/Parse/Pidl/Samba4/Python.pm +++ b/pidl/lib/Parse/Pidl/Samba4/Python.pm @@ -655,7 +655,7 @@ sub Interface($$$) my @fns = (); foreach my $d (@{$interface->{FUNCTIONS}}) { - next if not defined($d->{OPNUM}); + next if has_property($d, "noopnum"); next if has_property($d, "nopython"); next if has_property($d, "todo"); |