summaryrefslogtreecommitdiff
path: root/pidl
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2010-08-25 11:13:08 +0200
committerStefan Metzmacher <metze@samba.org>2010-08-28 10:59:18 +0200
commiteeebaa63f1fe85fe9d58bad50920432263de84c0 (patch)
treec489f5058f4adfbf136f409018410fb43d52a5ea /pidl
parent8e6f67392998d09073aa04932a4c838e264a56ce (diff)
downloadsamba-eeebaa63f1fe85fe9d58bad50920432263de84c0.tar.gz
samba-eeebaa63f1fe85fe9d58bad50920432263de84c0.tar.bz2
samba-eeebaa63f1fe85fe9d58bad50920432263de84c0.zip
pidl:Samba4/NDR/Client: fix skip reason for unsized arrays
metze
Diffstat (limited to 'pidl')
-rw-r--r--pidl/lib/Parse/Pidl/Samba4/NDR/Client.pm2
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;
}