aboutsummaryrefslogtreecommitdiffstats
path: root/epan/uat.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2008-05-23 06:06:33 +0000
committerAnders Broman <anders.broman@ericsson.com>2008-05-23 06:06:33 +0000
commit7a57ee1f019937cecb826c0141fb0c1ea3657661 (patch)
treec9f1515468bed2e319d0033cbed1f69517ee0c28 /epan/uat.c
parent36d89bb79ce475c5c80dc1dc6b6848b6f9488ce5 (diff)
Fix some of the Errors/warnings detected by checkapi.
svn path=/trunk/; revision=25369
Diffstat (limited to 'epan/uat.c')
-rw-r--r--epan/uat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/uat.c b/epan/uat.c
index 632267f070..3d16691190 100644
--- a/epan/uat.c
+++ b/epan/uat.c
@@ -381,7 +381,7 @@ gboolean uat_fld_chk_str(void* u1 _U_, const char* strptr, unsigned len _U_, voi
gboolean uat_fld_chk_proto(void* u1 _U_, const char* strptr, unsigned len, void* u2 _U_, void* u3 _U_, const char** err) {
if (len) {
char* name = ep_strndup(strptr,len);
- g_strdown(name);
+ g_ascii_strdown(name,len);
g_strchug(name);
if (find_dissector(name)) {