pidl:Samba4/NDR/Client: fix skip reason for unsized arrays
authorStefan Metzmacher <metze@samba.org>
Wed, 25 Aug 2010 09:13:08 +0000 (11:13 +0200)
committerStefan Metzmacher <metze@samba.org>
Sat, 28 Aug 2010 08:59:18 +0000 (10:59 +0200)
metze

pidl/lib/Parse/Pidl/Samba4/NDR/Client.pm

index 190bb0d02dc1cf4eced8cb42fd92e823165b8964..8dc9d252b674cc493be809d9d84baa6e4bf71b91 100644 (file)
@@ -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;
                        }