From db73295accbec0c6513817f0a64a92018592bb26 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Fri, 15 Aug 2014 13:18:50 +0200 Subject: util: never use ether_ntoa(), since it formats with %x, not %02x, which makes ethernet addresses look funny --- src/shared/socket-util.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/shared/socket-util.h') diff --git a/src/shared/socket-util.h b/src/shared/socket-util.h index 0b4998d04..07d0aff72 100644 --- a/src/shared/socket-util.h +++ b/src/shared/socket-util.h @@ -23,6 +23,7 @@ #include #include +#include #include #include #include @@ -111,3 +112,7 @@ int netlink_family_to_string_alloc(int b, char **s); int netlink_family_from_string(const char *s) _pure_; bool sockaddr_equal(const union sockaddr_union *a, const union sockaddr_union *b); + +#define ETHER_ADDR_TO_STRING_MAX (3*6) + +char* ether_addr_to_string(const struct ether_addr *addr, char buffer[ETHER_ADDR_TO_STRING_MAX]); -- cgit v1.2.3