summaryrefslogtreecommitdiff
path: root/src/string_vec.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/string_vec.c')
-rw-r--r--src/string_vec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/string_vec.c b/src/string_vec.c
index 3c77f6f..0bcd7f2 100644
--- a/src/string_vec.c
+++ b/src/string_vec.c
@@ -23,7 +23,7 @@ static int cmpstringp(const void *restrict a, const void *restrict b)
if (str2 == NULL) {
return -1;
}
- return strcasecmp(str1, str2);
+ return strcmp(str1, str2);
}
struct string_vec string_vec_create(void)