Changeset 0e7c3d9 in mainline for uspace/srv/fs/fat/fat_dentry.c


Ignore:
Timestamp:
2017-05-15T19:25:23Z (8 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/srv/fs/fat/fat_dentry.c

    rfec333b3 r0e7c3d9  
    6363        size_t size;
    6464
    65         if (!(rc = stricmp(name, component)))
     65        if (!(rc = str_casecmp(name, component)))
    6666                return rc;
    6767        if (!str_chr(name, '.')) {
     
    7373                name[size] = '.';
    7474                name[size + 1] = '\0';
    75                 rc = stricmp(name, component);
     75                rc = str_casecmp(name, component);
    7676        }
    7777        return rc;
Note: See TracChangeset for help on using the changeset viewer.