Ignore:
File:
1 edited

Legend:

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

    rfeeac0d rfc4bf2a  
    5656static inet_ntrans_t *ntrans_find(addr128_t ip_addr)
    5757{
    58         list_foreach(ntrans_list, ntrans_list, inet_ntrans_t, ntrans) {
     58        list_foreach(ntrans_list, link) {
     59                inet_ntrans_t *ntrans = list_get_instance(link,
     60                    inet_ntrans_t, ntrans_list);
     61
    5962                if (addr128_compare(ntrans->ip_addr, ip_addr))
    6063                        return ntrans;
Note: See TracChangeset for help on using the changeset viewer.