]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
nl80211: Remove extra \n from debug messages
authorJouni Malinen <j@w1.fi>
Sun, 19 Dec 2010 10:00:24 +0000 (12:00 +0200)
committerJouni Malinen <j@w1.fi>
Sun, 19 Dec 2010 10:00:24 +0000 (12:00 +0200)
src/drivers/driver_nl80211.c

index 38c5f343bcea842d071d69678bfca065165c9925..e0f8b1101251d6ed0d4ec76881424fd7578f19b1 100644 (file)
@@ -4628,7 +4628,7 @@ static int wpa_driver_nl80211_associate(
                        cipher = WLAN_CIPHER_SUITE_TKIP;
                        break;
                }
-               wpa_printf(MSG_DEBUG, "  * pairwise=0x%x\n", cipher);
+               wpa_printf(MSG_DEBUG, "  * pairwise=0x%x", cipher);
                NLA_PUT_U32(msg, NL80211_ATTR_CIPHER_SUITES_PAIRWISE, cipher);
        }
 
@@ -4650,7 +4650,7 @@ static int wpa_driver_nl80211_associate(
                        cipher = WLAN_CIPHER_SUITE_TKIP;
                        break;
                }
-               wpa_printf(MSG_DEBUG, "  * group=0x%x\n", cipher);
+               wpa_printf(MSG_DEBUG, "  * group=0x%x", cipher);
                NLA_PUT_U32(msg, NL80211_ATTR_CIPHER_SUITE_GROUP, cipher);
        }