<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src-test2/lib/libutil, branch release/6.4.0_cvs</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src-test2/atom?h=release%2F6.4.0_cvs</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src-test2/atom?h=release%2F6.4.0_cvs'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/'/>
<updated>2008-11-26T01:09:48Z</updated>
<entry>
<title>Copy releng/6.4 to release/6.4.0 in preparation for 6.4-RELEASE.</title>
<updated>2008-11-26T01:09:48Z</updated>
<author>
<name>Ken Smith</name>
<email>kensmith@FreeBSD.org</email>
</author>
<published>2008-11-26T01:09:48Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=a93332491e10c1a23a9fd2f11ccbdba33d72d850'/>
<id>urn:sha1:a93332491e10c1a23a9fd2f11ccbdba33d72d850</id>
<content type='text'>
Approved by:	re (implicit)

This commit was manufactured to restore the state of the 6.4-RELEASE image.
</content>
</entry>
<entry>
<title>MFC r183565:</title>
<updated>2008-10-27T05:28:08Z</updated>
<author>
<name>Ed Schouten</name>
<email>ed@FreeBSD.org</email>
</author>
<published>2008-10-27T05:28:08Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=eded7ed5cdd753a8e2f02c7ab70eec4e3008263e'/>
<id>urn:sha1:eded7ed5cdd753a8e2f02c7ab70eec4e3008263e</id>
<content type='text'>
  Small cleanups to openpty().

  - Pass O_NOCTTY to posix_openpt(2). This makes the implementation work
    consistently on implementations that make the PTY the controlling TTY
    by default.

  - Call unlockpt() before opening the slave device. POSIX mentions that
    de slave device should only be opened after grantpt() and unlockpt()
    have been called.

  - Replace some redundant code by a label.

As a safety net, add a call to revoke() to unlockpt(). All applications
out there use openpty(), explicitly call revoke() or implement their own
PTY allocation routines. Adding the call to unlockpt() won't hurt, but
will prevent foot-shooting.

Reviewed by:	jhb, kib
Approved by:	re
</content>
</entry>
<entry>
<title>MFC r180347:</title>
<updated>2008-08-03T16:07:25Z</updated>
<author>
<name>Konstantin Belousov</name>
<email>kib@FreeBSD.org</email>
</author>
<published>2008-08-03T16:07:25Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=aad8e324e2fa20bc945e7845df13a354c207954f'/>
<id>urn:sha1:aad8e324e2fa20bc945e7845df13a354c207954f</id>
<content type='text'>
Add #include &lt;inttypes.h&gt; for the strtoimax().
</content>
</entry>
<entry>
<title>MFC to RELENG_6:</title>
<updated>2008-04-20T16:32:20Z</updated>
<author>
<name>Antoine Brodin</name>
<email>antoine@FreeBSD.org</email>
</author>
<published>2008-04-20T16:32:20Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=a42f8465686c2fe0f867d39e7900444f1d61b96c'/>
<id>urn:sha1:a42f8465686c2fe0f867d39e7900444f1d61b96c</id>
<content type='text'>
  Merge changes from NetBSD on humanize_number.c, 1.8 -&gt; 1.13
  Significant changes:
  - rev. 1.11: Use PRId64 instead of a cast to long long and %lld to print
  an int64_t.
  - rev. 1.12: Fix a bug that humanize_number() produces "1000" where it
  should be "1.0G" or "1.0M".  The bug reported by Greg Troxel.

  PR:             118461
  PR:             102694
  Approved by:    rwatson (mentor)
  Obtained from:  NetBSD
  MFC after:      1 month
</content>
</entry>
<entry>
<title>MFC: Update openpty(3) manpage for the recent pty fixes and remove some</title>
<updated>2008-01-23T17:59:27Z</updated>
<author>
<name>John Baldwin</name>
<email>jhb@FreeBSD.org</email>
</author>
<published>2008-01-23T17:59:27Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=31048fa10f60b1bcf95848ffdade5dc3a64c1096'/>
<id>urn:sha1:31048fa10f60b1bcf95848ffdade5dc3a64c1096</id>
<content type='text'>
now-unused macros from grantpt.c.
</content>
</entry>
<entry>
<title>Fix issues which allow snooping on ptys. [08:01]</title>
<updated>2008-01-14T22:56:05Z</updated>
<author>
<name>Colin Percival</name>
<email>cperciva@FreeBSD.org</email>
</author>
<published>2008-01-14T22:56:05Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=6e20c573c785e7affd755e7867c9ab60878ddf92'/>
<id>urn:sha1:6e20c573c785e7affd755e7867c9ab60878ddf92</id>
<content type='text'>
Fix an off-by-one error in inet_network(3). [08:02]

Security: FreeBSD-SA-08:01.pty
Security: FreeBSD-SA-08:02.libc
</content>
</entry>
<entry>
<title>MFC: Bump up the number of ttys supported by pty(4) to 512.</title>
<updated>2007-11-27T18:43:09Z</updated>
<author>
<name>John Baldwin</name>
<email>jhb@FreeBSD.org</email>
</author>
<published>2007-11-27T18:43:09Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=a3d37495d2a9d9a26db31146dce686dc5c7484ac'/>
<id>urn:sha1:a3d37495d2a9d9a26db31146dce686dc5c7484ac</id>
<content type='text'>
Approved by:	re (kensmith)
</content>
</entry>
<entry>
<title>MFC: Synch with HEAD.</title>
<updated>2007-09-28T06:35:14Z</updated>
<author>
<name>Dag-Erling Smørgrav</name>
<email>des@FreeBSD.org</email>
</author>
<published>2007-09-28T06:35:14Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=748ae4b1c20391087352b4f701d539edb03ce8c6'/>
<id>urn:sha1:748ae4b1c20391087352b4f701d539edb03ce8c6</id>
<content type='text'>
</content>
</entry>
<entry>
<title>MFC: (1.5) use sprintf() rather than (unportable) strlcpy().</title>
<updated>2007-09-28T06:34:22Z</updated>
<author>
<name>Dag-Erling Smørgrav</name>
<email>des@FreeBSD.org</email>
</author>
<published>2007-09-28T06:34:22Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=74f0ffcff1644c35cc5010bb418a37136d658029'/>
<id>urn:sha1:74f0ffcff1644c35cc5010bb418a37136d658029</id>
<content type='text'>
Also bobbit some unused variables.
</content>
</entry>
<entry>
<title>MFC: flopen(3), expand_number(3), kld_isloaded(3)</title>
<updated>2007-09-21T21:23:04Z</updated>
<author>
<name>David E. O'Brien</name>
<email>obrien@FreeBSD.org</email>
</author>
<published>2007-09-21T21:23:04Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=9f70dec3de72c583e2dcbd436c208c5167e8c839'/>
<id>urn:sha1:9f70dec3de72c583e2dcbd436c208c5167e8c839</id>
<content type='text'>
</content>
</entry>
</feed>
