mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-29 13:50:13 +01:00
core: fix creating lower-case MAC address with nm_utils_hwaddr_ntoa_buf()
There is only one caller at the moment, and he passes TRUE anyway.
(cherry picked from commit f0adca00f3)
This commit is contained in:
parent
91cb458349
commit
faf3cef542
1 changed files with 1 additions and 1 deletions
|
|
@ -3262,7 +3262,7 @@ nm_utils_hwaddr_ntoa_buf (gconstpointer addr, gsize addr_len, gboolean upper_cas
|
|||
if (buf_len < addr_len * 3)
|
||||
g_return_val_if_reached (NULL);
|
||||
|
||||
_bin2str (addr, addr_len, ':', TRUE, buf);
|
||||
_bin2str (addr, addr_len, ':', upper_case, buf);
|
||||
return buf;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue