<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/usr.bin/tip, branch releng/12.2</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src/atom?h=releng%2F12.2</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src/atom?h=releng%2F12.2'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/'/>
<updated>2020-04-10T00:27:19Z</updated>
<entry>
<title>MFC r359680: mail/gprof/tip: tap with the ugly stick</title>
<updated>2020-04-10T00:27:19Z</updated>
<author>
<name>Kyle Evans</name>
<email>kevans@FreeBSD.org</email>
</author>
<published>2020-04-10T00:27:19Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=6e4bda8b281cd01a70a496f872223a5d94f7d0b4'/>
<id>urn:sha1:6e4bda8b281cd01a70a496f872223a5d94f7d0b4</id>
<content type='text'>
The ugly stick here is this bit in the respective headers:

#ifndef EXTERN
#define EXTERN extern
#endif

with a follow-up #define EXTERN in a single .c file to push all of their
definitions into one spot. A pass should be made over these three later to
push these definitions into the correct files instead, but this will suffice
for now and at a more leisurely pace.
</content>
</entry>
<entry>
<title>MFC r357269:</title>
<updated>2020-02-04T19:24:10Z</updated>
<author>
<name>Dimitry Andric</name>
<email>dim@FreeBSD.org</email>
</author>
<published>2020-02-04T19:24:10Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=40dbc337f3fe79e306455e97770fe294dac7a4b0'/>
<id>urn:sha1:40dbc337f3fe79e306455e97770fe294dac7a4b0</id>
<content type='text'>
Merge r357267 from the clang1000-import branch:

Fix the following -Werror warning from clang 10.0.0 in tip:

usr.bin/tip/tip/tip.c:428:4: error: misleading indentation; statement is not part of the previous 'if' [-Werror,-Wmisleading-indentation]
                        if (gch == EOF)
                        ^
usr.bin/tip/tip/tip.c:426:5: note: previous statement is here
                } else if (!cumode &amp;&amp; gch == character(value(FORCE)))
                  ^

The intent was to have the EOF check grouped with the getchar() call
just above it.  This was accidentally introduced in r354624.
</content>
</entry>
<entry>
<title>MFC r354624</title>
<updated>2019-12-03T22:57:10Z</updated>
<author>
<name>Eric van Gyzen</name>
<email>vangyzen@FreeBSD.org</email>
</author>
<published>2019-12-03T22:57:10Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=ed3e8685a9a5dd669ab8ce68ffd07a4cff0d9238'/>
<id>urn:sha1:ed3e8685a9a5dd669ab8ce68ffd07a4cff0d9238</id>
<content type='text'>
tip/cu: check for EOF on input on the local side

If cu reads an EOF on the input side, it goes into a tight loop
sending a garbage byte to the remote.  With this change, it exits
gracefully, along with its child.

Sponsored by:	Dell EMC Isilon
</content>
</entry>
<entry>
<title>MFC r353326:</title>
<updated>2019-10-15T17:30:12Z</updated>
<author>
<name>Brooks Davis</name>
<email>brooks@FreeBSD.org</email>
</author>
<published>2019-10-15T17:30:12Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=a7a3ca08b870a50d38dd5ad89ac5d1eab59546ab'/>
<id>urn:sha1:a7a3ca08b870a50d38dd5ad89ac5d1eab59546ab</id>
<content type='text'>
Fix various -Wpointer-compare warnings

This warning (comparing a pointer against a zero character literal
rather than NULL) has existed since GCC 7.1.0, and was recently added to
Clang trunk.

Almost all of these are harmless, except for fwcontrol's str2node, which
needs to both guard against dereferencing a NULL pointer (though in
practice it appears none of the callers will ever pass one in), as well
as ensure it doesn't parse the empty string as node 0 due to strtol's
awkward interface.

Submitted by:	James Clarke &lt;jtrc27@jrtc27.com&gt;
Obtained from:	CheriBSD
Sponsored by:	DARPA, AFRL
Differential Revision:	https://reviews.freebsd.org/D21914
</content>
</entry>
<entry>
<title>Move remote &amp; phones to usr.bin/tip/tip/</title>
<updated>2018-09-19T14:56:53Z</updated>
<author>
<name>Brad Davis</name>
<email>brd@FreeBSD.org</email>
</author>
<published>2018-09-19T14:56:53Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=bca3325319305149808a0f5399d4b161f4705d78'/>
<id>urn:sha1:bca3325319305149808a0f5399d4b161f4705d78</id>
<content type='text'>
Approved by:	re (blanket, pkgbase), will (mentor)
Differential Revision:	https://reviews.freebsd.org/D17219
</content>
</entry>
<entry>
<title>Add EXAMPLES to tip(1) man page.</title>
<updated>2018-04-28T12:24:05Z</updated>
<author>
<name>Edward Tomasz Napierala</name>
<email>trasz@FreeBSD.org</email>
</author>
<published>2018-04-28T12:24:05Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=e2a08f166a388aa3683e3d344be027eff6e3f8d4'/>
<id>urn:sha1:e2a08f166a388aa3683e3d344be027eff6e3f8d4</id>
<content type='text'>
MFC after:	2 weeks
</content>
</entry>
<entry>
<title>General further adoption of SPDX licensing ID tags.</title>
<updated>2017-11-20T19:49:47Z</updated>
<author>
<name>Pedro F. Giffuni</name>
<email>pfg@FreeBSD.org</email>
</author>
<published>2017-11-20T19:49:47Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=8a16b7a18f5d0b031f09832fd7752fba717e2a97'/>
<id>urn:sha1:8a16b7a18f5d0b031f09832fd7752fba717e2a97</id>
<content type='text'>
Mainly focus on files that use BSD 3-Clause license.

The Software Package Data Exchange (SPDX) group provides a specification
to make it easier for automated tools to detect and summarize well known
opensource licenses. We are gradually adopting the specification, noting
that the tags are considered only advisory and do not, in any way,
superceed or replace the license texts.

Special thanks to Wind River for providing access to "The Duke of
Highlander" tool: an older (2014) run over FreeBSD tree was useful as a
starting point.
</content>
</entry>
<entry>
<title>DIRDEPS_BUILD: Update dependencies.</title>
<updated>2017-10-31T00:07:04Z</updated>
<author>
<name>Bryan Drewery</name>
<email>bdrewery@FreeBSD.org</email>
</author>
<published>2017-10-31T00:07:04Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=ea825d02749f382c3f7e17f28247f20a48733eab'/>
<id>urn:sha1:ea825d02749f382c3f7e17f28247f20a48733eab</id>
<content type='text'>
Sponsored by:	Dell EMC Isilon
</content>
</entry>
<entry>
<title>Add basic example to the cu(1) man page.  Srsly, folks, you don't</title>
<updated>2017-04-22T09:38:43Z</updated>
<author>
<name>Edward Tomasz Napierala</name>
<email>trasz@FreeBSD.org</email>
</author>
<published>2017-04-22T09:38:43Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=c71c6c734bfbc8ad72001259ff1580dcc20c1f6b'/>
<id>urn:sha1:c71c6c734bfbc8ad72001259ff1580dcc20c1f6b</id>
<content type='text'>
need to install minicom for this...

MFC after:	2 weeks
</content>
</entry>
<entry>
<title>Don't hide build commands.</title>
<updated>2015-09-18T21:01:52Z</updated>
<author>
<name>Bryan Drewery</name>
<email>bdrewery@FreeBSD.org</email>
</author>
<published>2015-09-18T21:01:52Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=e56d20da9dafb8d55fb780fa40a0656434148f12'/>
<id>urn:sha1:e56d20da9dafb8d55fb780fa40a0656434148f12</id>
<content type='text'>
</content>
</entry>
</feed>
