Ignore:
File:
1 edited

Legend:

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

    r3e6bca8 r5a6cc679  
    11/*
    2  * Copyright (c) 2021 Jiri Svoboda
     2 * Copyright (c) 2013 Jiri Svoboda
    33 * All rights reserved.
    44 *
     
    3737#include <errno.h>
    3838#include <inet/addr.h>
    39 #include <inet/eth_addr.h>
    4039#include <inet/inetcfg.h>
    4140#include <io/table.h>
     
    4443#include <stdlib.h>
    4544#include <stdint.h>
    46 #include <str.h>
    4745#include <str_error.h>
    4846
     
    341339        inet_link_info_t linfo;
    342340        table_t *table = NULL;
    343         eth_addr_str_t saddr;
    344341
    345342        size_t count;
     
    370367                }
    371368
    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);
     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);
    375375
    376376                free(linfo.name);
Note: See TracChangeset for help on using the changeset viewer.