Browse Source

nl80211: Remove extra \n from debug messages

Jouni Malinen 14 years ago
parent
commit
79c3124ce5
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/drivers/driver_nl80211.c

+ 2 - 2
src/drivers/driver_nl80211.c

@@ -4628,7 +4628,7 @@ static int wpa_driver_nl80211_associate(
 			cipher = WLAN_CIPHER_SUITE_TKIP;
 			cipher = WLAN_CIPHER_SUITE_TKIP;
 			break;
 			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);
 		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;
 			cipher = WLAN_CIPHER_SUITE_TKIP;
 			break;
 			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);
 		NLA_PUT_U32(msg, NL80211_ATTR_CIPHER_SUITE_GROUP, cipher);
 	}
 	}