From 54dc527a9e2bdc0f73b4638189a051070f0328bf Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Sat, 27 Aug 2005 12:24:02 +0000 Subject: r9682: Jelmer, I think this fixes another case where the parser generator was producing duplicate function definitions. Can you check this out? (This used to be commit e9bb695e74c98ea1f2647dacc7c9c4b8ad37bd72) --- source4/pidl/lib/Parse/Pidl/Ethereal/NDR.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/pidl') diff --git a/source4/pidl/lib/Parse/Pidl/Ethereal/NDR.pm b/source4/pidl/lib/Parse/Pidl/Ethereal/NDR.pm index 92199e13f1..60b2371108 100644 --- a/source4/pidl/lib/Parse/Pidl/Ethereal/NDR.pm +++ b/source4/pidl/lib/Parse/Pidl/Ethereal/NDR.pm @@ -326,7 +326,7 @@ sub Element($$$) my $add = ""; foreach (@{$e->{LEVELS}}) { - next if ($_->{TYPE} eq "SWITCH"); + last if ($_->{TYPE} eq "SWITCH"); pidl_def "static int $dissectorname$add(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree, guint8 *drep);"; pidl_code "static int"; pidl_code "$dissectorname$add(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree, guint8 *drep)"; -- cgit