Re: svn commit: r318017 - head/share/man/man4

2017-05-10 Thread Dimitry Andric
On 10 May 2017, at 02:47, Bruce Evans wrote: > > On Tue, 9 May 2017, Ian Lepore wrote: > >> On Tue, 2017-05-09 at 08:36 +, Edward Tomasz Napierala wrote: >>> Author: trasz >>> Date: Tue May 9 08:36:09 2017 >>> New Revision: 318017 >>> URL:

Re: svn commit: r318017 - head/share/man/man4

2017-05-09 Thread Bruce Evans
On Tue, 9 May 2017, Ian Lepore wrote: On Tue, 2017-05-09 at 08:36 +, Edward Tomasz Napierala wrote: Author: trasz Date: Tue May??9 08:36:09 2017 New Revision: 318017 URL: https://svnweb.freebsd.org/changeset/base/318017 Log: ? Fix device paths for USB serial adapters: the formatting

Re: svn commit: r318017 - head/share/man/man4

2017-05-09 Thread Warner Losh
It's the passed in radix. In this case it is 32: len = vsnrprintf(dev->si_name, sizeof(dev->si_name), 32, fmt, ap); so we get things like ttya following tty9. It should be in printf(9), but isn't. Warner On Tue, May 9, 2017 at 5:29 PM, Ian Lepore wrote: > On Tue,

Re: svn commit: r318017 - head/share/man/man4

2017-05-09 Thread Ian Lepore
On Tue, 2017-05-09 at 08:36 +, Edward Tomasz Napierala wrote: > Author: trasz > Date: Tue May  9 08:36:09 2017 > New Revision: 318017 > URL: https://svnweb.freebsd.org/changeset/base/318017 > > Log: >   Fix device paths for USB serial adapters: the formatting strings >   contain "%u",

svn commit: r318017 - head/share/man/man4

2017-05-09 Thread Edward Tomasz Napierala
Author: trasz Date: Tue May 9 08:36:09 2017 New Revision: 318017 URL: https://svnweb.freebsd.org/changeset/base/318017 Log: Fix device paths for USB serial adapters: the formatting strings contain "%u", differently from eg uart(4) which uses "%r". Suggested by: bde@ MFC after:2