summaryrefslogtreecommitdiff
path: root/source4/pidl/lib/Parse
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2008-02-19 02:02:48 +0100
committerJelmer Vernooij <jelmer@samba.org>2008-02-19 02:02:48 +0100
commit35dd0b0f4ad6ab0d9365d2858b60bf82e4877bda (patch)
tree3d5f0c589a903851baf2626bd22f2a247b40a335 /source4/pidl/lib/Parse
parentc455774d9330fc1903a701a2042e29f68b8227f8 (diff)
downloadsamba-35dd0b0f4ad6ab0d9365d2858b60bf82e4877bda.tar.gz
samba-35dd0b0f4ad6ab0d9365d2858b60bf82e4877bda.tar.bz2
samba-35dd0b0f4ad6ab0d9365d2858b60bf82e4877bda.zip
Add test for INCLUDE command.
(This used to be commit d1aa25249d64513f785430cab7437b5c7ca8db27)
Diffstat (limited to 'source4/pidl/lib/Parse')
-rw-r--r--source4/pidl/lib/Parse/Pidl/Wireshark/Conformance.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/pidl/lib/Parse/Pidl/Wireshark/Conformance.pm b/source4/pidl/lib/Parse/Pidl/Wireshark/Conformance.pm
index 43604cb51a..5c37b4a0c4 100644
--- a/source4/pidl/lib/Parse/Pidl/Wireshark/Conformance.pm
+++ b/source4/pidl/lib/Parse/Pidl/Wireshark/Conformance.pm
@@ -330,7 +330,7 @@ sub handle_ett_field
unless(defined($ett)) {
error($pos, "incomplete ETT_FIELD command");
return;
- };
+ }
push (@{$data->{ett}}, $ett);
}
@@ -344,7 +344,7 @@ sub handle_include
unless(defined($fn)) {
error($pos, "incomplete INCLUDE command");
return;
- };
+ }
ReadConformance($fn, $data);
}