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.
This commit is contained in:
Thomas Haller 2017-07-25 14:56:47 +02:00
parent 25f2f33273
commit f0adca00f3

View file

@ -3233,7 +3233,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;
}