aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-xml.c
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2008-05-09 12:55:37 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2008-05-09 12:55:37 +0000
commit22ff43e0bdf81c25319f8c72cc3156b29eccba6b (patch)
tree445a59b385cb3e2611fe95b2721384ed59084c54 /epan/dissectors/packet-xml.c
parent23b0a5d4961560a0e77ab97ff20d39f87ae5c07a (diff)
Fix a typo: strl -> strlen
svn path=/trunk/; revision=25263
Diffstat (limited to 'epan/dissectors/packet-xml.c')
-rw-r--r--epan/dissectors/packet-xml.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-xml.c b/epan/dissectors/packet-xml.c
index e5bf96d881..17f4e516e1 100644
--- a/epan/dissectors/packet-xml.c
+++ b/epan/dissectors/packet-xml.c
@@ -270,7 +270,7 @@ static void before_xmpli(void* tvbparse_data, const void* wanted_data _U_, tvbpa
int hf_tag;
gint ett;
- g_ascii_strdown(name,strl(name));
+ g_ascii_strdown(name,strlen(name));
if (!ns) {
hf_tag = hf_xmlpi;
ett = ett_xmpli;