]> git.sur5r.net Git - i3/i3status/commit
Simplify string comparisons in slurp_battery_info for NetBSD.
authorTommie Gannert <tommie@gannert.se>
Mon, 1 Aug 2016 19:28:16 +0000 (20:28 +0100)
committerTommie Gannert <tommie@gannert.se>
Sun, 14 Aug 2016 11:20:43 +0000 (12:20 +0100)
commita937693cefd664b7f259713ed1fdddc4cc7ad188
treeb803904806e251ba2b32d69fbbc1a562e9e97544
parent7728cff37044943b05c4f9de5e9c6ef3d9e14a12
Simplify string comparisons in slurp_battery_info for NetBSD.

Doing strlen(a) == strlen(b) && strncmp(a, b, N) seems to have no
benefits compared to just strcmp(a, b). The NetBSD cstring properties
come from the kernel, not the user.

The test for units did a prefix match, but that looked like a bug, the
unit is "Watt hour" in my Virtual box.
src/print_battery_info.c