Subject: CVS commit: src/sys/net80211
To: None <source-changes@NetBSD.org>
From: David Young <dyoung@netbsd.org>
List: source-changes
Date: 09/28/2003 02:35:20
Module Name:	src
Committed By:	dyoung
Date:		Sun Sep 28 02:35:20 UTC 2003

Modified Files:
	src/sys/net80211: ieee80211_input.c ieee80211_output.c
	    ieee80211_proto.c

Log Message:
More NetBSD-FreeBSD compatibility changes in the pattern

#ifdef __FreeBSD__
	/* FreeBSDism */
#else
	/* NetBSDism */
#endif

An important and non-obvious change is in ieee80211_mgmt_output,

#ifdef __FreeBSD__
        KASSERT(m->m_pkthdr.rcvif == NULL, ("rcvif not null"));
#endif

Because NetBSD mbufs are not bzero'd like FreeBSD's, we cannot
count on rcvif == NULL.


To generate a diff of this commit:
cvs rdiff -r1.3 -r1.4 src/sys/net80211/ieee80211_input.c \
    src/sys/net80211/ieee80211_proto.c
cvs rdiff -r1.4 -r1.5 src/sys/net80211/ieee80211_output.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.