From owner-cvs-all@FreeBSD.ORG Thu May 24 22:23:55 2007 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6627F16A46E; Thu, 24 May 2007 22:23:55 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from heff.fud.org.nz (203-109-251-39.static.bliink.ihug.co.nz [203.109.251.39]) by mx1.freebsd.org (Postfix) with ESMTP id E81F313C4B9; Thu, 24 May 2007 22:23:54 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: by heff.fud.org.nz (Postfix, from userid 1001) id 575661CC5A; Fri, 25 May 2007 10:23:53 +1200 (NZST) Date: Fri, 25 May 2007 10:23:53 +1200 From: Andrew Thompson To: Andre Oppermann Message-ID: <20070524222353.GA30597@heff.fud.org.nz> References: <200705231916.l4NJGLY4076073@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200705231916.l4NJGLY4076073@repoman.freebsd.org> User-Agent: Mutt/1.5.13 (2006-08-11) Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet tcp.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 May 2007 22:23:55 -0000 On Wed, May 23, 2007 at 07:16:21PM +0000, Andre Oppermann wrote: > andre 2007-05-23 19:16:21 UTC > > FreeBSD src repository > > Modified files: > sys/netinet tcp.h > Log: > Add CWR back into the PRINT_TH_FLAGS list as gcc42 doesn't complain > about \8 in a string anymore. > > Revision Changes Path > 1.39 +1 -1 src/sys/netinet/tcp.h > > - * $FreeBSD: /usr/local/www/cvsroot/FreeBSD/src/sys/netinet/tcp.h,v 1.38 2007/05/18 19:58:37 andre Exp $ > + * $FreeBSD: /usr/local/www/cvsroot/FreeBSD/src/sys/netinet/tcp.h,v 1.39 2007/05/23 19:16:21 andre Exp $ > */ > > #ifndef _NETINET_TCP_H_ > @@ -69,7 +69,7 @@ struct tcphdr { > #define TH_ECE 0x40 > #define TH_CWR 0x80 > #define TH_FLAGS (TH_FIN|TH_SYN|TH_RST|TH_PUSH|TH_ACK|TH_URG|TH_ECE|TH_CWR) > -#define PRINT_TH_FLAGS "\20\1FIN\2SYN\3RST\4PUSH\5ACK\6URG\7ECE" > +#define PRINT_TH_FLAGS "\20\1FIN\2SYN\3RST\4PUSH\5ACK\6URG\7ECE\8CWR" Shouldnt this be \10 instead of \8 Andrew