From: Andre Heider Date: Mon, 21 Nov 2022 08:49:05 +0000 (+0100) Subject: lib: use common IWINFO_CIPHER_NAMES strings X-Git-Url: http://git.openwrt.org/?p=project%2Fiwinfo.git;a=commitdiff_plain;h=aefd0ef68fa8c6d7a622d84f1e8085a11321887a lib: use common IWINFO_CIPHER_NAMES strings Use a hyphen for the WEP cipher names, just as the others. Not that anyone cares anymore, but this let's us use this array instead of everyone fixing it up on their own. Signed-off-by: Andre Heider --- diff --git a/iwinfo_lib.c b/iwinfo_lib.c index 353ecb8..7fbf811 100644 --- a/iwinfo_lib.c +++ b/iwinfo_lib.c @@ -24,11 +24,11 @@ */ const char * const IWINFO_CIPHER_NAMES[IWINFO_CIPHER_COUNT] = { "NONE", - "WEP40", + "WEP-40", "TKIP", "WRAP", "CCMP", - "WEP104", + "WEP-104", "AES-OCB", "CKIP", "GCMP",