Revision 685ff50f

b/libcacard/vcard_emul_nss.c
955 955
static const char *
956 956
strip(const char *str)
957 957
{
958
    for (; *str && !isspace(*str); str++) {
958
    for (; *str && isspace(*str); str++) {
959 959
    }
960 960
    return str;
961 961
}
......
963 963
static const char *
964 964
find_blank(const char *str)
965 965
{
966
    for (; *str && isspace(*str); str++) {
966
    for (; *str && !isspace(*str); str++) {
967 967
    }
968 968
    return str;
969 969
}

Also available in: Unified diff