<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/bin, branch releng/11.2</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src/atom?h=releng%2F11.2</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src/atom?h=releng%2F11.2'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/'/>
<updated>2018-05-03T19:47:25Z</updated>
<entry>
<title>MFC r333092: sh: Don't have [ match any [[:class:]]</title>
<updated>2018-05-03T19:47:25Z</updated>
<author>
<name>Jilles Tjoelker</name>
<email>jilles@FreeBSD.org</email>
</author>
<published>2018-05-03T19:47:25Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=c6e2e97355074dffe8e2bc22a162702d01d52ad2'/>
<id>urn:sha1:c6e2e97355074dffe8e2bc22a162702d01d52ad2</id>
<content type='text'>
</content>
</entry>
<entry>
<title>MFC r326430:</title>
<updated>2018-04-16T16:12:30Z</updated>
<author>
<name>Edward Tomasz Napierala</name>
<email>trasz@FreeBSD.org</email>
</author>
<published>2018-04-16T16:12:30Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=d2e3dd14775a72dcb4936469d55895e89a40a693'/>
<id>urn:sha1:d2e3dd14775a72dcb4936469d55895e89a40a693</id>
<content type='text'>
Add "vmaddr" ps(1) keyword.
</content>
</entry>
<entry>
<title>MFC r308432, r308657: Capsicumize some trivial stdio programs</title>
<updated>2018-04-13T03:30:10Z</updated>
<author>
<name>Kyle Evans</name>
<email>kevans@FreeBSD.org</email>
</author>
<published>2018-04-13T03:30:10Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=de0db7dfb4e99dcc1f9de4cba2de0c50300e2266'/>
<id>urn:sha1:de0db7dfb4e99dcc1f9de4cba2de0c50300e2266</id>
<content type='text'>
r308432: Capsicumize some trivial stdio programs

Trivially capsicumize some simple programs that just interact with
stdio.  This list of programs uses 'pledge("stdio")' in OpenBSD.

r308657: fold(1): Revert incorrect r308432

As Jean-Sébastien notes, fold(1) requires handling argv-supplied files. That
will require a slightly more sophisticated approach.
</content>
</entry>
<entry>
<title>Revert r330897:</title>
<updated>2018-03-29T02:50:57Z</updated>
<author>
<name>Eitan Adler</name>
<email>eadler@FreeBSD.org</email>
</author>
<published>2018-03-29T02:50:57Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=4ab2e064d7950be84256d671a7ae93f87cc6aa36'/>
<id>urn:sha1:4ab2e064d7950be84256d671a7ae93f87cc6aa36</id>
<content type='text'>
This was intended to be a non-functional change. It wasn't. The commit
message was thus wrong. In addition it broke arm, and merged crypto
related code.

Revert with prejudice.

This revert skips files touched in r316370 since that commit was since
MFCed. This revert also skips files that require $FreeBSD$ property
changes.

Thank you to those who helped me get out of this mess including but not
limited to gonzo, kevans, rgrimes.

Requested by: gjb (re)
</content>
</entry>
<entry>
<title>MFC 330872:</title>
<updated>2018-03-24T00:26:42Z</updated>
<author>
<name>John Baldwin</name>
<email>jhb@FreeBSD.org</email>
</author>
<published>2018-03-24T00:26:42Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=3eddda31cb4aaa870b2650f536fd4dfe1eacfcac'/>
<id>urn:sha1:3eddda31cb4aaa870b2650f536fd4dfe1eacfcac</id>
<content type='text'>
Add a "jail" keyword to list the name of a jail rather than its ID.
</content>
</entry>
<entry>
<title>MFC r328427:</title>
<updated>2018-03-17T03:00:24Z</updated>
<author>
<name>Eitan Adler</name>
<email>eadler@FreeBSD.org</email>
</author>
<published>2018-03-17T03:00:24Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=1e6f0e83f4447d80a59c9b9c73822cfd83371a18'/>
<id>urn:sha1:1e6f0e83f4447d80a59c9b9c73822cfd83371a18</id>
<content type='text'>
dd(1): Use a local swapbytes() function.

swab(3) has restrict qualifiers for src and dst.
Avoid relying on undefined overlapping swab behavior.

Obtained From: OpenBSD
</content>
</entry>
<entry>
<title>MFC r305139:</title>
<updated>2018-03-15T09:43:38Z</updated>
<author>
<name>Eitan Adler</name>
<email>eadler@FreeBSD.org</email>
</author>
<published>2018-03-15T09:43:38Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=aecdb0e4859062ba3913f23a6fc3687b3bbbf3eb'/>
<id>urn:sha1:aecdb0e4859062ba3913f23a6fc3687b3bbbf3eb</id>
<content type='text'>
df(1): Allow duplicate -l flags gracefully

Rather than producing a misleading error message when duplicate -l flags are
provided to df(1), simply ignore extra flags and proceed as if only one was
specified.  This seems most reasonable given the usage for -l:

     -l      Only display information about locally-mounted file systems.

l and t flags still conflict, as before.

PR:		208169
</content>
</entry>
<entry>
<title>Partial merge of the SPDX changes</title>
<updated>2018-03-14T03:19:51Z</updated>
<author>
<name>Eitan Adler</name>
<email>eadler@FreeBSD.org</email>
</author>
<published>2018-03-14T03:19:51Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=be5d0b9566b13fdf8cabebb63334cbec12bfc409'/>
<id>urn:sha1:be5d0b9566b13fdf8cabebb63334cbec12bfc409</id>
<content type='text'>
These changes are incomplete but are making it difficult
to determine what other changes can/should be merged.

No objections from:	pfg
</content>
</entry>
<entry>
<title>Revert MFC of r323865</title>
<updated>2018-03-10T08:51:02Z</updated>
<author>
<name>Eitan Adler</name>
<email>eadler@FreeBSD.org</email>
</author>
<published>2018-03-10T08:51:02Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=6f80aa659a792e98ff356cf8310e06b831101605'/>
<id>urn:sha1:6f80aa659a792e98ff356cf8310e06b831101605</id>
<content type='text'>
While this behavior can be viewed as a bug fix, due to the fundamental
nature of cat(1), leave this change only for a major version.

PR:	210607
Requested by:	sevan
</content>
</entry>
<entry>
<title>MFC r327672:</title>
<updated>2018-03-08T07:55:03Z</updated>
<author>
<name>Eitan Adler</name>
<email>eadler@FreeBSD.org</email>
</author>
<published>2018-03-08T07:55:03Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=7fc88e7a5e329ccaee87912d8f9a3e8fd2a7d3e9'/>
<id>urn:sha1:7fc88e7a5e329ccaee87912d8f9a3e8fd2a7d3e9</id>
<content type='text'>
stddef.h is not used by cat.c, remove the include.
</content>
</entry>
</feed>
