diff options
author | Stefan Metzmacher <metze@samba.org> | 2010-08-25 11:13:08 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2010-08-28 10:59:18 +0200 |
commit | eeebaa63f1fe85fe9d58bad50920432263de84c0 (patch) | |
tree | c489f5058f4adfbf136f409018410fb43d52a5ea /pidl/lib | |
parent | 8e6f67392998d09073aa04932a4c838e264a56ce (diff) | |
download | samba-eeebaa63f1fe85fe9d58bad50920432263de84c0.tar.gz samba-eeebaa63f1fe85fe9d58bad50920432263de84c0.tar.xz samba-eeebaa63f1fe85fe9d58bad50920432263de84c0.zip |
pidl:Samba4/NDR/Client: fix skip reason for unsized arrays
metze
Diffstat (limited to 'pidl/lib')
-rw-r--r-- | pidl/lib/Parse/Pidl/Samba4/NDR/Client.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pidl/lib/Parse/Pidl/Samba4/NDR/Client.pm b/pidl/lib/Parse/Pidl/Samba4/NDR/Client.pm index 190bb0d02d..8dc9d252b6 100644 --- a/pidl/lib/Parse/Pidl/Samba4/NDR/Client.pm +++ b/pidl/lib/Parse/Pidl/Samba4/NDR/Client.pm @@ -710,7 +710,7 @@ sub ParseFunction($$$) } if ($e->{LEVELS}[0]->{TYPE} eq "ARRAY") { if (not defined($e->{LEVELS}[0]->{SIZE_IS})) { - $reason = "is a pointer to an unsized array"; + $reason = "is an unsized array"; } else { next; } |