summaryrefslogtreecommitdiff
path: root/source4/pidl/lib/Parse/Pidl/Ethereal/Conformance.pm
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2005-09-09 16:23:50 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:38:01 -0500
commit6635e7b2ad97d482f74d696cfb1b277d62d949c1 (patch)
tree6ea3b7eeb0d6fe5665226f6e7831b2853a11405f /source4/pidl/lib/Parse/Pidl/Ethereal/Conformance.pm
parent13f7e6a0c6d3cc4c0cff59827f49a245712d99b9 (diff)
downloadsamba-6635e7b2ad97d482f74d696cfb1b277d62d949c1.tar.gz
samba-6635e7b2ad97d482f74d696cfb1b277d62d949c1.tar.bz2
samba-6635e7b2ad97d482f74d696cfb1b277d62d949c1.zip
r10116: Print out a couple more warnings.
(This used to be commit 0628dfa5c3c74614a86b4f61b8d1555ef41c41bb)
Diffstat (limited to 'source4/pidl/lib/Parse/Pidl/Ethereal/Conformance.pm')
-rw-r--r--source4/pidl/lib/Parse/Pidl/Ethereal/Conformance.pm7
1 files changed, 6 insertions, 1 deletions
diff --git a/source4/pidl/lib/Parse/Pidl/Ethereal/Conformance.pm b/source4/pidl/lib/Parse/Pidl/Ethereal/Conformance.pm
index 9e6147b166..47107b5969 100644
--- a/source4/pidl/lib/Parse/Pidl/Ethereal/Conformance.pm
+++ b/source4/pidl/lib/Parse/Pidl/Ethereal/Conformance.pm
@@ -57,7 +57,12 @@ sub handle_hf_rename($$$$)
return;
}
- $data->{hf_renames}->{$old} = $new;
+ $data->{hf_renames}->{$old} = {
+ OLDNAME => $old,
+ NEWNAME => $new,
+ POS => $pos,
+ USED => 0
+ };
}
sub handle_param_value($$$$)