From owner-svn-src-all@FreeBSD.ORG Thu Mar 8 23:46:43 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8CC421065673; Thu, 8 Mar 2012 23:46:43 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 7C32C8FC15; Thu, 8 Mar 2012 23:46:43 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q28NkhYR069890; Thu, 8 Mar 2012 23:46:43 GMT (envelope-from adrian@svn.freebsd.org) Received: (from adrian@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q28NkhCL069888; Thu, 8 Mar 2012 23:46:43 GMT (envelope-from adrian@svn.freebsd.org) Message-Id: <201203082346.q28NkhCL069888@svn.freebsd.org> From: Adrian Chadd Date: Thu, 8 Mar 2012 23:46:43 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r232705 - head/sys/net80211 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Mar 2012 23:46:43 -0000 Author: adrian Date: Thu Mar 8 23:46:42 2012 New Revision: 232705 URL: http://svn.freebsd.org/changeset/base/232705 Log: Add missing \n's. This showed up when testing the wtap module, as it attaches with no radiotap tx/rx configuration. Modified: head/sys/net80211/ieee80211_radiotap.c Modified: head/sys/net80211/ieee80211_radiotap.c ============================================================================== --- head/sys/net80211/ieee80211_radiotap.c Thu Mar 8 21:09:34 2012 (r232704) +++ head/sys/net80211/ieee80211_radiotap.c Thu Mar 8 23:46:42 2012 (r232705) @@ -67,7 +67,7 @@ ieee80211_radiotap_attach(struct ieee802 else if (tx_radiotap & B(IEEE80211_RADIOTAP_XCHANNEL)) off = radiotap_offset(th, IEEE80211_RADIOTAP_XCHANNEL); if (off == -1) { - if_printf(ic->ic_ifp, "%s: no tx channel, radiotap 0x%x", + if_printf(ic->ic_ifp, "%s: no tx channel, radiotap 0x%x\n", __func__, tx_radiotap); /* NB: we handle this case but data will have no chan spec */ } else @@ -83,7 +83,7 @@ ieee80211_radiotap_attach(struct ieee802 else if (rx_radiotap & B(IEEE80211_RADIOTAP_XCHANNEL)) off = radiotap_offset(rh, IEEE80211_RADIOTAP_XCHANNEL); if (off == -1) { - if_printf(ic->ic_ifp, "%s: no rx channel, radiotap 0x%x", + if_printf(ic->ic_ifp, "%s: no rx channel, radiotap 0x%x\n", __func__, rx_radiotap); /* NB: we handle this case but data will have no chan spec */ } else