From owner-cvs-src@FreeBSD.ORG Sat May 26 08:11:43 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B5C8F16A46F; Sat, 26 May 2007 08:11:43 +0000 (UTC) (envelope-from stefan@fafoe.narf.at) Received: from viefep34-int.chello.at (viefep18-int.chello.at [213.46.255.22]) by mx1.freebsd.org (Postfix) with ESMTP id 44F6A13C4BA; Sat, 26 May 2007 08:11:41 +0000 (UTC) (envelope-from stefan@fafoe.narf.at) Received: from lizard.fafoe.narf.at ([213.47.85.26]) by viefep16-int.chello.at (InterMail vM.7.08.02.00 201-2186-121-20061213) with ESMTP id <20070526075113.FPGL3980.viefep16-int.chello.at@lizard.fafoe.narf.at>; Sat, 26 May 2007 09:51:13 +0200 Received: by lizard.fafoe.narf.at (Postfix, from userid 1001) id E2D57BBA3; Sat, 26 May 2007 09:51:12 +0200 (CEST) Date: Sat, 26 May 2007 09:51:12 +0200 From: Stefan Farfeleder To: Andre Oppermann Message-ID: <20070526075104.GA953@lizard.fafoe.narf.at> References: <200705252128.l4PLSn49018027@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200705252128.l4PLSn49018027@repoman.freebsd.org> User-Agent: Mutt/1.5.15 (2007-04-06) 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-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: Sat, 26 May 2007 08:11:43 -0000 On Fri, May 25, 2007 at 09:28:49PM +0000, Andre Oppermann wrote: > andre 2007-05-25 21:28:49 UTC > > FreeBSD src repository > > Modified files: > sys/netinet tcp.h > Log: > The printf %b list in PRINT_TH_FLAGS has to be in octal numbering. > Thus convert \8 to \10 and the warnings go away. > > Pointed out by: sam, ru, thompsa \10 is an octal escape sequence, a character constant with the numerical value 8. The translation is done by the C compiler, not by printf.