2
0
Fork 0

Fix use of deprecated g_strcasecmp

personal/stbuehler/wip
Stefan Bühler 2012-06-16 13:08:57 +02:00
parent b310884f4d
commit 2634c77aae
1 changed files with 1 additions and 1 deletions

View File

@ -229,7 +229,7 @@ gboolean li_request_validate_header(liConnection *con) {
for ( ; l ; l = li_http_header_find_next(l, CONST_STR_LEN("expect")) ) {
hh = (liHttpHeader*) l->data;
if (0 == g_strcasecmp( LI_HEADER_VALUE(hh), "100-continue" )) {
if (0 == g_ascii_strcasecmp( LI_HEADER_VALUE(hh), "100-continue" )) {
expect_100_cont = TRUE;
} else {
/* we only support 100-continue */