Changeset 73db198 in mainline for uspace/lib/c/generic/config.c


Ignore:
Timestamp:
2017-05-07T10:25:38Z (7 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
582a0b8
Parents:
951f6b9e
Message:

Match 'console' without length limit

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/config.c

    r951f6b9e r73db198  
    6363        while ((arg = str_tok(args, " ", &args)) != NULL) {
    6464                arg = str_tok(arg, "=", &value);
    65                 if (arg && !str_lcmp(arg, key, str_length(key)))
     65                if (arg && !str_cmp(arg, key))
    6666                        break;
    6767                else
Note: See TracChangeset for help on using the changeset viewer.