In converting the iwinfo header to enum-define pattern the IWINFO_AUTH
define conversion was wrongly dropped. Readd the missing define to fix
iwinfo always reporting None as encryption.
Fixes: 7e3d7ded29d7 ("iwinfo: reorganize iwinfo header to enum and defines")
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
IWINFO_AUTH_COUNT
};
+#define IWINFO_AUTH_OPEN (1 << IWINFO_AUTH_OPEN)
+#define IWINFO_AUTH_SHARED (1 << IWINFO_AUTH_SHARED)
+
extern const char * const IWINFO_AUTH_NAMES[IWINFO_AUTH_COUNT];