Changeset 8a637a4 in mainline for uspace/srv/net


Ignore:
Timestamp:
2015-09-30T17:47:41Z (10 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f1f7584
Parents:
a955fcc
Message:

remove EEXISTS in favor of EEXIST

Location:
uspace/srv/net
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/inetsrv/addrobj.c

    ra955fcc r8a637a4  
    8787                /* Duplicate address name */
    8888                fibril_mutex_unlock(&addr_list_lock);
    89                 return EEXISTS;
     89                return EEXIST;
    9090        }
    9191
  • uspace/srv/net/tcp/conn.c

    ra955fcc r8a637a4  
    12231223                rc = amap_insert(amap, &conn->ident, conn, af_allow_system, &aepp);
    12241224                if (rc != EOK) {
    1225                         assert(rc != EEXISTS);
     1225                        assert(rc != EEXIST);
    12261226                        assert(rc == ENOMEM);
    12271227                        log_msg(LOG_DEFAULT, LVL_ERROR, "Out of memory.");
Note: See TracChangeset for help on using the changeset viewer.