Changeset e89a06a in mainline for uspace/srv/net/nconfsrv/iplink.c


Ignore:
Timestamp:
2018-07-06T22:13:20Z (6 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
be0f5e4
Parents:
6419c6e
Message:

Encapsulate partitions list in volume server. (Global state is not good coding practice.)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/nconfsrv/iplink.c

    r6419c6e re89a06a  
    170170}
    171171
    172 static void ncs_link_cat_change_cb(void)
     172static void ncs_link_cat_change_cb(void *arg)
    173173{
    174174        (void) ncs_link_check_new();
     
    179179        errno_t rc;
    180180
    181         rc = loc_register_cat_change_cb(ncs_link_cat_change_cb);
     181        rc = loc_register_cat_change_cb(ncs_link_cat_change_cb, NULL);
    182182        if (rc != EOK) {
    183183                log_msg(LOG_DEFAULT, LVL_ERROR, "Failed registering callback for IP link "
Note: See TracChangeset for help on using the changeset viewer.