Changeset c81d4f1 in mainline for uspace/lib/c/generic/inet/host.c


Ignore:
Timestamp:
2018-01-04T20:50:53Z (8 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Children:
3b47db6
Parents:
847844a
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 20:47:53)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 20:50:53)
Message:

(optional) Remove the horrid hack named case_errno_t.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/inet/host.c

    r847844a rc81d4f1  
    210210        rc = inet_host_parse(str, &host, endptr != NULL ? &eptr : NULL);
    211211        if (rc != EOK) {
    212                 switch ((case_errno_t) rc) {
    213                 case (case_errno_t) EINVAL:
     212                switch (rc) {
     213                case EINVAL:
    214214                        if (errmsg != NULL)
    215215                                *errmsg = "Invalid format";
    216216                        goto error;
    217                 case (case_errno_t) ENOMEM:
     217                case ENOMEM:
    218218                        if (errmsg != NULL)
    219219                                *errmsg = "Out of memory";
Note: See TracChangeset for help on using the changeset viewer.