Revision 54248641797599b4dd8b28c08af6565f44214e44 authored by Simon L. Nielsen on 22 November 2012, 22:52:15 UTC, committed by Simon L. Nielsen on 22 November 2012, 22:52:15 UTC
Fix insufficient message length validation for EAP-TLS messages.

Fix Linux compatibility layer input validation error.

Security:	FreeBSD-SA-12:06.bind
Security:	FreeBSD-SA-12:07.hostapd
Security:	FreeBSD-SA-12:08.linux
Security:	CVE-2012-4244, CVE-2012-5166, CVE-2012-4445, CVE-2012-4576
Approved by:	re
Approved by:	security-officer
1 parent 93c5170
Raw File
manpages-make.sh
#!/bin/sh
#
# $FreeBSD$
#

# Move all the manpages out to their own dist, using the base dist as a
# starting point.
if [ -d ${RD}/trees/base/usr/share/man ]; then
	( cd ${RD}/trees/base/usr/share/man;
	find . | cpio -dumpl ${RD}/trees/manpages/usr/share/man > /dev/null 2>&1) &&
	rm -rf ${RD}/trees/base/usr/share/man;
fi
back to top