diff options
author | 2009-10-30 20:32:25 +0000 | |
---|---|---|
committer | 2009-10-30 20:32:25 +0000 | |
commit | a79f869882420e371f8fb95709dfb899987126c6 (patch) | |
tree | d5c86e24998d3ca68b469e389a264c5c0aaec652 | |
parent | when used with incorrect flags, zzz(8) should call zzusage(void) (diff) | |
download | wireguard-openbsd-a79f869882420e371f8fb95709dfb899987126c6.tar.xz wireguard-openbsd-a79f869882420e371f8fb95709dfb899987126c6.zip |
missing \n in log() message.
from Jurjen Oskam.
-rw-r--r-- | sys/net80211/ieee80211_crypto_tkip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net80211/ieee80211_crypto_tkip.c b/sys/net80211/ieee80211_crypto_tkip.c index dc359713f40..ffd04f79e87 100644 --- a/sys/net80211/ieee80211_crypto_tkip.c +++ b/sys/net80211/ieee80211_crypto_tkip.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ieee80211_crypto_tkip.c,v 1.16 2009/09/24 16:03:10 damien Exp $ */ +/* $OpenBSD: ieee80211_crypto_tkip.c,v 1.17 2009/10/30 20:32:25 damien Exp $ */ /*- * Copyright (c) 2008 Damien Bergamini <damien.bergamini@free.fr> @@ -510,7 +510,7 @@ ieee80211_michael_mic_failure(struct ieee80211com *ic, u_int64_t tsc) if (ic->ic_flags & IEEE80211_F_COUNTERM) return; /* countermeasures already active */ - log(LOG_WARNING, "%s: Michael MIC failure", ic->ic_if.if_xname); + log(LOG_WARNING, "%s: Michael MIC failure\n", ic->ic_if.if_xname); /* * NB. do not send Michael MIC Failure reports as recommended since |