When printing MAC addresses, always use trailing zeroes.
tinc currently prints MAC addresses without trailing zeroes, for example: 1:2:3:4:5:6 This looks weird and is inconsistent with how MAC addresses are displayed everywhere else. This commit adds trailing zeroes, so the above address will be printed as the following: 01:02:03:04:05:06
This commit is contained in:
parent
3d730a40a4
commit
dc55691ca7
1 changed files with 1 additions and 1 deletions
|
@ -308,7 +308,7 @@ bool net2str(char *netstr, int len, const subnet_t *subnet) {
|
|||
|
||||
switch (subnet->type) {
|
||||
case SUBNET_MAC:
|
||||
snprintf(netstr, len, "%hx:%hx:%hx:%hx:%hx:%hx#%d",
|
||||
snprintf(netstr, len, "%02hx:%02hx:%02hx:%02hx:%02hx:%02hx#%d",
|
||||
subnet->net.mac.address.x[0],
|
||||
subnet->net.mac.address.x[1],
|
||||
subnet->net.mac.address.x[2],
|
||||
|
|
Loading…
Reference in a new issue