summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/expr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/expr.c b/src/expr.c
index ad9b257ca..78a44c125 100644
--- a/src/expr.c
+++ b/src/expr.c
@@ -343,7 +343,7 @@ nextarg (char *str)
return 0;
else
{
- int r = strcmp (*args, str) == 0;
+ int r = strcoll (*args, str) == 0;
args += r;
return r;
}