From owner-cvs-src@FreeBSD.ORG Thu Mar 13 10:09:12 2008 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BDB6E106566B; Thu, 13 Mar 2008 10:09:12 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 949E58FC13; Thu, 13 Mar 2008 10:09:12 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m2DA9CDU026380; Thu, 13 Mar 2008 10:09:12 GMT (envelope-from bz@repoman.freebsd.org) Received: (from bz@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m2DA9C4j026379; Thu, 13 Mar 2008 10:09:12 GMT (envelope-from bz) Message-Id: <200803131009.m2DA9C4j026379@repoman.freebsd.org> From: "Bjoern A. Zeeb" Date: Thu, 13 Mar 2008 10:09:12 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_7 Cc: Subject: cvs commit: src/sys/netinet tcp_output.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Mar 2008 10:09:12 -0000 bz 2008-03-13 10:09:12 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/netinet tcp_output.c Log: MFC rev. 1.146 tcp_output.c Padding after EOL option must be zeros according to RFC793 but the NOPs used are 0x01. While we could simply pad with EOLs (which are 0x00), rather use an explicit 0x00 constant there to not confuse poeple with 'EOL padding'. Put in a comment saying just that. Early MFC requested by: silby because of more people reporting problems on net@ Revision Changes Path 1.141.2.4 +10 -2 src/sys/netinet/tcp_output.c