Re: svn commit: r336746 - in head/lib: libc/gen libutil

2018-07-27 Thread Konstantin Belousov
On Fri, Jul 27, 2018 at 12:57:54PM -0600, Ian Lepore wrote: > Yes, this is exactly what I think we should do after your description > of how FBSDprivate_1.0 exists specifically to solve some interactions > between rtld, libc, and libthr. Great. > > This is what I meant when I said in one of the

Re: svn commit: r336746 - in head/lib: libc/gen libutil

2018-07-27 Thread Ian Lepore
On Fri, 2018-07-27 at 19:44 +0300, Konstantin Belousov wrote: > On Fri, Jul 27, 2018 at 10:07:11AM -0600, Ian Lepore wrote: > > > > I believe pw_scan() was originally a static function in libc used by > > getpwent() and related functions. When libutil grew some pw utilties, > > it looks like the

Re: svn commit: r336746 - in head/lib: libc/gen libutil

2018-07-27 Thread Konstantin Belousov
On Fri, Jul 27, 2018 at 10:07:11AM -0600, Ian Lepore wrote: > I believe pw_scan() was originally a static function in libc used by > getpwent() and related functions. When libutil grew some pw utilties, > it looks like the static pw_scan was renamed to __pw_scan and added to > the private list, so

Re: svn commit: r336746 - in head/lib: libc/gen libutil

2018-07-27 Thread Ian Lepore
On Fri, 2018-07-27 at 18:43 +0300, Konstantin Belousov wrote: > On Fri, Jul 27, 2018 at 09:35:41AM -0600, Ian Lepore wrote: > > > > On Fri, 2018-07-27 at 18:03 +0300, Konstantin Belousov wrote: > > > > > > On Thu, Jul 26, 2018 at 06:34:38PM +, Ian Lepore wrote: > > > > > > > > > > > >

Re: svn commit: r336746 - in head/lib: libc/gen libutil

2018-07-27 Thread Konstantin Belousov
On Fri, Jul 27, 2018 at 09:35:41AM -0600, Ian Lepore wrote: > On Fri, 2018-07-27 at 18:03 +0300, Konstantin Belousov wrote: > > On Thu, Jul 26, 2018 at 06:34:38PM +, Ian Lepore wrote: > > > > > > Author: ian > > > Date: Thu Jul 26 18:34:38 2018 > > > New Revision: 336746 > > > URL:

Re: svn commit: r336746 - in head/lib: libc/gen libutil

2018-07-27 Thread Ian Lepore
On Fri, 2018-07-27 at 18:03 +0300, Konstantin Belousov wrote: > On Thu, Jul 26, 2018 at 06:34:38PM +, Ian Lepore wrote: > > > > Author: ian > > Date: Thu Jul 26 18:34:38 2018 > > New Revision: 336746 > > URL: https://svnweb.freebsd.org/changeset/base/336746 > > > > Log: > >   Make pw_scan(3)

Re: svn commit: r336746 - in head/lib: libc/gen libutil

2018-07-27 Thread Konstantin Belousov
On Thu, Jul 26, 2018 at 06:34:38PM +, Ian Lepore wrote: > Author: ian > Date: Thu Jul 26 18:34:38 2018 > New Revision: 336746 > URL: https://svnweb.freebsd.org/changeset/base/336746 > > Log: > Make pw_scan(3) more compatible with getpwent(3) et. al. when processing > data from /etc/passwd

svn commit: r336746 - in head/lib: libc/gen libutil

2018-07-26 Thread Ian Lepore
Author: ian Date: Thu Jul 26 18:34:38 2018 New Revision: 336746 URL: https://svnweb.freebsd.org/changeset/base/336746 Log: Make pw_scan(3) more compatible with getpwent(3) et. al. when processing data from /etc/passwd rather than /etc/master.passwd. The libc getpwent(3) and related