summaryrefslogtreecommitdiff
path: root/navit/country.c
diff options
context:
space:
mode:
authormartin-s <martin-s@ffa7fe5e-494d-0410-b361-a75ebd5db220>2011-01-25 16:07:19 +0000
committermartin-s <martin-s@ffa7fe5e-494d-0410-b361-a75ebd5db220>2011-01-25 16:07:19 +0000
commitb4556250c717beb6ff6038665c394dfaea663bc4 (patch)
tree64888e200a1c6418f879cacdcc4f3278b1e962a6 /navit/country.c
parent6404e49601b38c042e44ba20abd8b3c338a67a19 (diff)
downloadnavit-b4556250c717beb6ff6038665c394dfaea663bc4.tar.gz
Fix:Core:MSVC fixes
git-svn-id: http://svn.code.sf.net/p/navit/code/trunk/navit@4028 ffa7fe5e-494d-0410-b361-a75ebd5db220
Diffstat (limited to 'navit/country.c')
-rw-r--r--navit/country.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/navit/country.c b/navit/country.c
index 1bcaad143..8a398a3a1 100644
--- a/navit/country.c
+++ b/navit/country.c
@@ -380,7 +380,7 @@ match(struct country_search *this_, enum attr_type type, const char *name)
if (this_->partial)
ret=(strncasecmp(this_->search.u.str, name, this_->len) == 0);
else
- ret=(strcasecmp(this_->search.u.str, name) == 0);
+ ret=(g_strcasecmp(this_->search.u.str, name) == 0);
return ret;
}