Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/inet/inet.c

    r5a6cc679 r3e6bca8  
    11/*
    2  * Copyright (c) 2013 Jiri Svoboda
     2 * Copyright (c) 2021 Jiri Svoboda
    33 * All rights reserved.
    44 *
     
    3737#include <errno.h>
    3838#include <inet/addr.h>
     39#include <inet/eth_addr.h>
    3940#include <inet/inetcfg.h>
    4041#include <io/table.h>
     
    4344#include <stdlib.h>
    4445#include <stdint.h>
     46#include <str.h>
    4547#include <str_error.h>
    4648
     
    339341        inet_link_info_t linfo;
    340342        table_t *table = NULL;
     343        eth_addr_str_t saddr;
    341344
    342345        size_t count;
     
    367370                }
    368371
    369                 table_printf(table, "%02x:%02x:%02x:%02x:%02x:%02x\t"
    370                     "%s\t" "%zu\n",
    371                     linfo.mac_addr[0], linfo.mac_addr[1],
    372                     linfo.mac_addr[2], linfo.mac_addr[3],
    373                     linfo.mac_addr[4], linfo.mac_addr[5],
    374                     linfo.name, linfo.def_mtu);
     372                eth_addr_format(&linfo.mac_addr, &saddr);
     373                table_printf(table, "%s\t %s\t %zu\n", saddr.str, linfo.name,
     374                    linfo.def_mtu);
    375375
    376376                free(linfo.name);
Note: See TracChangeset for help on using the changeset viewer.