cvs commit: src/sys/netinet tcp.h

Stefan Farfeleder stefanf at FreeBSD.org
Sat May 26 08:11:43 UTC 2007


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.


More information about the cvs-src mailing list