<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/usr.bin, branch releng/8.1</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src/atom?h=releng%2F8.1</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src/atom?h=releng%2F8.1'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/'/>
<updated>2011-09-28T08:47:17Z</updated>
<entry>
<title>Fix handling of corrupt compress(1)ed data. [11:04]</title>
<updated>2011-09-28T08:47:17Z</updated>
<author>
<name>Bjoern A. Zeeb</name>
<email>bz@FreeBSD.org</email>
</author>
<published>2011-09-28T08:47:17Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=06b13deee0aa97e88116949eff30f8e62125dc17'/>
<id>urn:sha1:06b13deee0aa97e88116949eff30f8e62125dc17</id>
<content type='text'>
Add missing length checks on unix socket addresses. [11:05]

Approved by:	so (cperciva)
Approved by:	re (kensmith)
Security:	FreeBSD-SA-11:04.compress
Security:	CVE-2011-2895 [11:04]
Security:	FreeBSD-SA-11:05.unix
</content>
</entry>
<entry>
<title>MFC r208888,208889,209017:</title>
<updated>2010-06-12T05:22:55Z</updated>
<author>
<name>Xin LI</name>
<email>delphij@FreeBSD.org</email>
</author>
<published>2010-06-12T05:22:55Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=a5916c2bd05b9cbf68e7ea19633b7fff25076213'/>
<id>urn:sha1:a5916c2bd05b9cbf68e7ea19633b7fff25076213</id>
<content type='text'>
 - make sure that initialize isb with fstat() on
   input file before using it. (bin/147275)
 - Fix grammar for st_nlink.
 - Style changes.

PR:		bin/147275
Approved by:	re (kensmith)
</content>
</entry>
<entry>
<title>MFC r208592: mail(1) misses addresses when replying to all</title>
<updated>2010-06-11T11:24:23Z</updated>
<author>
<name>Ulrich Spörlein</name>
<email>uqs@FreeBSD.org</email>
</author>
<published>2010-06-11T11:24:23Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=285dab09df2e0a49f6f5ca9ec39c2e836016b6f7'/>
<id>urn:sha1:285dab09df2e0a49f6f5ca9ec39c2e836016b6f7</id>
<content type='text'>
There's a parsing error for fields where addresses are not separated by
space. This is often produced by MS Outlook.

PR:		bin/131861
Submitted by:	Pete French &lt;petefrench at ticketswitch.com&gt;
Tested by:	Pete French
Reviewed by:	mikeh
Approved by:	re (kib)
</content>
</entry>
<entry>
<title>MFC:	r208320</title>
<updated>2010-05-25T20:16:36Z</updated>
<author>
<name>Jung-uk Kim</name>
<email>jkim@FreeBSD.org</email>
</author>
<published>2010-05-25T20:16:36Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=2ddf40c67d6a45c62ae9edc302fbf85cfd52e248'/>
<id>urn:sha1:2ddf40c67d6a45c62ae9edc302fbf85cfd52e248</id>
<content type='text'>
Add a new build option, MAN_UTILS.  This option lets you control building
utilities and related support files for manual pages, which were previously
controlled by MAN.  For POLA, the default depends on MAN, i.e., WITHOUT_MAN
implies WITHOUT_MAN_UTILS and WITH_MAN implies WITH_MAN_UTILS.
Note this patch implicitly fixes a documentation bug of src.conf(5), which
says WITHOUT_MAN may be used to not build manual pages while it was also
disabling some utilities for manual pages.

Approved by:	re (kib)
</content>
</entry>
<entry>
<title>MFC: r197362</title>
<updated>2010-05-21T19:45:54Z</updated>
<author>
<name>Marius Strobl</name>
<email>marius@FreeBSD.org</email>
</author>
<published>2010-05-21T19:45:54Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=8a324a2c6da85d60127d380975fd75aed53ce147'/>
<id>urn:sha1:8a324a2c6da85d60127d380975fd75aed53ce147</id>
<content type='text'>
IEEE Std 1003.1, 2004 Edition states:

"The escape sequence '\n' shall match a &lt;newline&gt; embedded in
the pattern space."

It is unclear whether this also applies to a \n embedded in a
character class.  Disable the existing handling of \n in a character
class following Mac OS X, GNU sed version 4.1.5 with --posix, and
SunOS 5.10 /usr/bin/sed.

Pointed by:	Marius Strobl
Obtained from:	Mac OS X
</content>
</entry>
<entry>
<title>MFC: r197361</title>
<updated>2010-05-21T19:44:23Z</updated>
<author>
<name>Marius Strobl</name>
<email>marius@FreeBSD.org</email>
</author>
<published>2010-05-21T19:44:23Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=4c3c0e9df5ec760ac2f7eb2209196e225248f287'/>
<id>urn:sha1:4c3c0e9df5ec760ac2f7eb2209196e225248f287</id>
<content type='text'>
Follow POSIX (IEEE Std 1003.1, 2004 Edition) in the implementation
of the y (translate) command.

"If a backslash character is immediately followed by a backslash
character in string1 or string2, the two backslash characters shall
be counted as a single literal backslash character"

Pointed by:	Marius Strobl
Obtained from:	Mac OS X
</content>
</entry>
<entry>
<title>MFC: r197356</title>
<updated>2010-05-21T19:21:47Z</updated>
<author>
<name>Marius Strobl</name>
<email>marius@FreeBSD.org</email>
</author>
<published>2010-05-21T19:21:47Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=d9dca217f751dab187adccbace90f002d8816988'/>
<id>urn:sha1:d9dca217f751dab187adccbace90f002d8816988</id>
<content type='text'>
Allow [ to be used as a delimiter.

Pointed by:	Marius Strobl
Obtained from:	Apple
</content>
</entry>
<entry>
<title>MFC r207733:</title>
<updated>2010-05-20T00:31:09Z</updated>
<author>
<name>Xin LI</name>
<email>delphij@FreeBSD.org</email>
</author>
<published>2010-05-20T00:31:09Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=d02025c89eb517b3096cb25a7f6cf9f09d507199'/>
<id>urn:sha1:d02025c89eb517b3096cb25a7f6cf9f09d507199</id>
<content type='text'>
Plug memory leak.
</content>
</entry>
<entry>
<title>MFC r207842, r207844, r208099:</title>
<updated>2010-05-18T09:59:09Z</updated>
<author>
<name>Martin Matuska</name>
<email>mm@FreeBSD.org</email>
</author>
<published>2010-05-18T09:59:09Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=3829a7346880c0e2bec70a23c3169714fb0b1e58'/>
<id>urn:sha1:3829a7346880c0e2bec70a23c3169714fb0b1e58</id>
<content type='text'>
MFC r207842:
Import of liblzma, xz, xzdec, lzmainfo from vendor branch
Add support for xz and lzma to lesspipe.sh (xzless, lzless)

MFC r207844:
Add two public headers missing in r207842
Adjust CFLAGS for lzmainfo, xz, xzdec

MFC r208099:
Add versioned symbols to liblzma
Use default SHLIB_MAJOR.

Approved by:	delphij (mentor)
</content>
</entry>
<entry>
<title>MFC r208089:</title>
<updated>2010-05-18T02:22:08Z</updated>
<author>
<name>Doug Barton</name>
<email>dougb@FreeBSD.org</email>
</author>
<published>2010-05-18T02:22:08Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=fb7f7f92b823d99f1fda73052a443bfe6ebe0c6a'/>
<id>urn:sha1:fb7f7f92b823d99f1fda73052a443bfe6ebe0c6a</id>
<content type='text'>
Remove duplicate
</content>
</entry>
</feed>
