Changeset 0c2d9bb in mainline for uspace/srv/net/dnsrsrv/dnsrsrv.c


Ignore:
Timestamp:
2013-12-25T22:54:29Z (10 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b51cf2c
Parents:
f7a33de (diff), ac36aed (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

merge mainline changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/dnsrsrv/dnsrsrv.c

    rf7a33de r0c2d9bb  
    6060        rc = transport_init();
    6161        if (rc != EOK) {
    62                 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed initializing tarnsport.");
     62                log_msg(LOG_DEFAULT, LVL_ERROR, "Failed initializing transport.");
    6363                return EIO;
    6464        }
     
    8989        log_msg(LOG_DEFAULT, LVL_DEBUG, "inet_get_srvaddr_srv()");
    9090       
    91         uint16_t af = IPC_GET_ARG1(*icall);
     91        ip_ver_t ver = IPC_GET_ARG1(*icall);
    9292       
    9393        char *name;
     
    100100       
    101101        dns_host_info_t *hinfo;
    102         rc = dns_name2host(name, &hinfo, af);
     102        rc = dns_name2host(name, &hinfo, ver);
    103103        if (rc != EOK) {
    104104                async_answer_0(iid, rc);
Note: See TracChangeset for help on using the changeset viewer.