Page MenuHomeFreeBSD

ifconfig: fix comparison in printmimo()
ClosedPublic

Authored by melifaro on May 27 2023, 12:40 PM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, May 2, 10:13 PM
Unknown Object (File)
Fri, Apr 26, 11:08 AM
Unknown Object (File)
Fri, Apr 26, 12:40 AM
Unknown Object (File)
Sun, Apr 21, 6:31 AM
Unknown Object (File)
Mar 12 2024, 9:42 PM
Unknown Object (File)
Mar 12 2024, 9:41 PM
Unknown Object (File)
Mar 8 2024, 11:51 PM
Unknown Object (File)
Mar 3 2024, 4:57 PM
Subscribers

Details

Summary

Currently compiler yells at printmimo() with the following warning:

/usr/home/melifaro/free/head/sbin/ifconfig/ifieee80211.c:3716:17: error: comparison of array 'mi->ch[i].rssi' not equal to a null pointer is always true [-Werror,-Wtautological-pointer-compare]
                if (mi->ch[i].rssi != 0) {
                    ~~~~~~~~~~^~~~    ~

To check:

--- a/sbin/ifconfig/Makefile
+++ b/sbin/ifconfig/Makefile
@@ -80,7 +80,8 @@ CFLAGS+=-DWITHOUT_NETLINK
 MAN=   ifconfig.8

 CFLAGS+= -Wall -Wmissing-prototypes -Wcast-qual -Wwrite-strings -Wnested-externs
-WARNS?=        2
+CFLAGS+=-Wno-error=unused-parameter -Wno-error=shadow
+#WARNS?=       2

I have no domain knowledge whether the fix is valid or not, but the code before 617f8b101e7f checked rssi[0].

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable