Changeset 0e7c3d9 in mainline for uspace/lib/http/src/headers.c


Ignore:
Timestamp:
2017-05-15T19:25:23Z (7 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
7ee7e6a
Parents:
fec333b3
Message:

Remove stricmp()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/http/src/headers.c

    rfec333b3 r0e7c3d9  
    251251bool http_header_name_match(const char *name_a, const char *name_b)
    252252{
    253         return stricmp(name_a, name_b) == 0;
     253        return str_casecmp(name_a, name_b) == 0;
    254254}
    255255
Note: See TracChangeset for help on using the changeset viewer.