<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/lib/libutil, branch release/10.1.0</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src/atom?h=release%2F10.1.0</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src/atom?h=release%2F10.1.0'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/'/>
<updated>2014-08-27T18:25:14Z</updated>
<entry>
<title>MFC r270180:</title>
<updated>2014-08-27T18:25:14Z</updated>
<author>
<name>Enji Cooper</name>
<email>ngie@FreeBSD.org</email>
</author>
<published>2014-08-27T18:25:14Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=1b65ce53fb230898e18d793d53f489bb496fa6c3'/>
<id>urn:sha1:1b65ce53fb230898e18d793d53f489bb496fa6c3</id>
<content type='text'>
r269906:

 Add missing BSD.tests.dist entry for lib/libutil to unbreak installworld with
 MK_TESTS == no

 Phabric: D555
 Approved by: jmmv (mentor, implicit)
 Pointyhat to: ngie

r269904:

 Integrate lib/libutil into the build/kyua

 Remove the .t wrappers

 Rename all of the TAP test applications from test-&lt;test&gt; to
 &lt;test&gt;_test to match the convention described in the TestSuite
 wiki page

 humanize_number_test.c:

 - Fix -Wformat warnings with counter variables
 - Fix minor style(9) issues:
 -- Header sorting
 -- Variable declaration alignment/sorting in main(..)
 -- Fit the lines in &lt;80 columns
 - Fix an off by one index error in the testcase output [*]
 - Remove unnecessary `extern char * optarg;` (this is already provided by
   unistd.h)

 Phabric: D555
 Approved by: jmmv (mentor)
 Obtained from: EMC / Isilon Storage Division [*]
 Submitted by: Casey Peel &lt;cpeel@isilon.com&gt; [*]
 Sponsored by: EMC / Isilon Storage Division
</content>
</entry>
<entry>
<title>MFC	r269015:</title>
<updated>2014-08-16T00:54:56Z</updated>
<author>
<name>Pedro F. Giffuni</name>
<email>pfg@FreeBSD.org</email>
</author>
<published>2014-08-16T00:54:56Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=6f67f9a4dd36f9caefe6c9496bd027753f0b4306'/>
<id>urn:sha1:6f67f9a4dd36f9caefe6c9496bd027753f0b4306</id>
<content type='text'>
fparseln(3): Update from NetBSD sources.

-fix a condition so that fparseln() doesn't report spurious empty lines
 eg after 2 comment lines, or on EOF after a single comment line
-no escape character means no escaped characters

modify the previous fix so that no pointless realloc()s are done in
the case of multiple empty continuation lines, and comment the code
to make the logics obvious.

fparseln is now part of libc in NetBSD so this changes the previous
revision numbering.

Obtained from:	NetBSD (CVS Rev. 1.6-1.7)
</content>
</entry>
<entry>
<title>MFC r265276:</title>
<updated>2014-07-29T22:29:31Z</updated>
<author>
<name>Mark Johnston</name>
<email>markj@FreeBSD.org</email>
</author>
<published>2014-07-29T22:29:31Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=5d896639fb7027f32ea7646f47476e9a6c4e8563'/>
<id>urn:sha1:5d896639fb7027f32ea7646f47476e9a6c4e8563</id>
<content type='text'>
Fix a typo.
</content>
</entry>
<entry>
<title>MFC r261824:</title>
<updated>2014-02-16T02:33:59Z</updated>
<author>
<name>Eitan Adler</name>
<email>eadler@FreeBSD.org</email>
</author>
<published>2014-02-16T02:33:59Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=170dcbd4267509f456351ba37352603142e957e7'/>
<id>urn:sha1:170dcbd4267509f456351ba37352603142e957e7</id>
<content type='text'>
libutil/pw_util.3: Fix two prototypes.
</content>
</entry>
<entry>
<title>don't assert on bad args, instead return an error..</title>
<updated>2013-10-07T22:22:57Z</updated>
<author>
<name>John-Mark Gurney</name>
<email>jmg@FreeBSD.org</email>
</author>
<published>2013-10-07T22:22:57Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=44f01c419d1e84684fa53b3814459419ded71a6b'/>
<id>urn:sha1:44f01c419d1e84684fa53b3814459419ded71a6b</id>
<content type='text'>
Since so many programs don't check return value, always NUL terminate
the buf...

fix rounding when using base 1024 (the bug that started it all)...

add a set of test cases so we can make sure that things don't break
in the future...

Thanks to Clifton Royston for testing and the test program...

Approved by:	re (hrs, glebius)
MFC after:	1 week
</content>
</entry>
<entry>
<title>The round of expand_number() cleanups.</title>
<updated>2013-08-30T11:21:52Z</updated>
<author>
<name>Sergey Kandaurov</name>
<email>pluknet@FreeBSD.org</email>
</author>
<published>2013-08-30T11:21:52Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=8d99b9cebd80ba6c1e85969fe9d9ea0962d31d14'/>
<id>urn:sha1:8d99b9cebd80ba6c1e85969fe9d9ea0962d31d14</id>
<content type='text'>
o Fix range error checking to detect overflow when uint64_t &lt; uintmax_t.
o Remove a non-functional check for no valid digits as pointed out by Bruce.
o Remove a rather pointless comment describing what the function does.
o Clean up a bunch of style bugs.

Brucified by:	bde
</content>
</entry>
<entry>
<title>libutil: Use O_CLOEXEC for internal file descriptors from open().</title>
<updated>2013-08-28T21:10:37Z</updated>
<author>
<name>Jilles Tjoelker</name>
<email>jilles@FreeBSD.org</email>
</author>
<published>2013-08-28T21:10:37Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=d1d4d95209e4ba5da75c16a5653bc46fca6418f8'/>
<id>urn:sha1:d1d4d95209e4ba5da75c16a5653bc46fca6418f8</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Reset errno before strtoumax() call to properly detect ERANGE.</title>
<updated>2013-08-21T22:37:15Z</updated>
<author>
<name>Sergey Kandaurov</name>
<email>pluknet@FreeBSD.org</email>
</author>
<published>2013-08-21T22:37:15Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=7261b203c6223fcbb1073fee20b7bbaf8f1804aa'/>
<id>urn:sha1:7261b203c6223fcbb1073fee20b7bbaf8f1804aa</id>
<content type='text'>
Restore saved errno if strtoumax() call is successful.

Reported by:	ache
Reviewed by:	jilles
MFC after:	1 week
</content>
</entry>
<entry>
<title>Check strtoumax(3) for ERANGE in case of non-prefixed string.</title>
<updated>2013-08-21T16:46:06Z</updated>
<author>
<name>Sergey Kandaurov</name>
<email>pluknet@FreeBSD.org</email>
</author>
<published>2013-08-21T16:46:06Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=869f276295d78e0f18c88c2966194a4e5594af3e'/>
<id>urn:sha1:869f276295d78e0f18c88c2966194a4e5594af3e</id>
<content type='text'>
OK'd by:	silence on current@
MFC after:	1 week
</content>
</entry>
<entry>
<title>Fix -Wunsequenced warning</title>
<updated>2013-06-29T15:52:48Z</updated>
<author>
<name>Tim Kientzle</name>
<email>kientzle@FreeBSD.org</email>
</author>
<published>2013-06-29T15:52:48Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=64330eb00f0c3a2071a86177cbc45fed8eb3d6eb'/>
<id>urn:sha1:64330eb00f0c3a2071a86177cbc45fed8eb3d6eb</id>
<content type='text'>
Submitted by:	dt71@gmx.com
</content>
</entry>
</feed>
