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:
Thomas Haller 2017-07-25 14:56:47 +02:00
parent 91cb458349
commit faf3cef542

View file

@ -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;
}