<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/usr.bin/tip, branch upstream/13.1.0</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src/atom?h=upstream%2F13.1.0</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src/atom?h=upstream%2F13.1.0'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/'/>
<updated>2021-08-31T06:13:15Z</updated>
<entry>
<title>Fix some common typos in source code comments</title>
<updated>2021-08-31T06:13:15Z</updated>
<author>
<name>Gordon Bergling</name>
<email>gbe@FreeBSD.org</email>
</author>
<published>2021-08-28T16:57:23Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=dbb74dd891e55d945cef3b31b5f788a30cbbd820'/>
<id>urn:sha1:dbb74dd891e55d945cef3b31b5f788a30cbbd820</id>
<content type='text'>
- s/priviledged/privileged/
- s/funtion/function/
- s/doens't/doesn't/
- s/sychronization/synchronization/

(cherry picked from commit 5bdf58e196096993758b3e50291db17104025b65)
</content>
</entry>
<entry>
<title>mail/gprof/tip: tap with the ugly stick</title>
<updated>2020-04-06T23:28:24Z</updated>
<author>
<name>Kyle Evans</name>
<email>kevans@FreeBSD.org</email>
</author>
<published>2020-04-06T23:28:24Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=a86ddfe8c760be83b1322fe8ba3a3568421adb1f'/>
<id>urn:sha1:a86ddfe8c760be83b1322fe8ba3a3568421adb1f</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.

MFC after:	3 days
</content>
</entry>
<entry>
<title>Fix the following -Werror warning from clang 10.0.0 in tip:</title>
<updated>2020-01-29T20:56:31Z</updated>
<author>
<name>Dimitry Andric</name>
<email>dim@FreeBSD.org</email>
</author>
<published>2020-01-29T20:56:31Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=f5c072fb4c8b29101a1ee71aaae87ee8ef3514f1'/>
<id>urn:sha1:f5c072fb4c8b29101a1ee71aaae87ee8ef3514f1</id>
<content type='text'>
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.

MFC after:	3 days
</content>
</entry>
<entry>
<title>tip/cu: check for EOF on input on the local side</title>
<updated>2019-11-11T17:41:52Z</updated>
<author>
<name>Eric van Gyzen</name>
<email>vangyzen@FreeBSD.org</email>
</author>
<published>2019-11-11T17:41:52Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=552117964a531ab117f0d11e4312d65db1a6dae8'/>
<id>urn:sha1:552117964a531ab117f0d11e4312d65db1a6dae8</id>
<content type='text'>
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.

MFC after:	2 weeks
Sponsored by:	Dell EMC Isilon
</content>
</entry>
<entry>
<title>Fix various -Wpointer-compare warnings</title>
<updated>2019-10-08T21:14:09Z</updated>
<author>
<name>Brooks Davis</name>
<email>brooks@FreeBSD.org</email>
</author>
<published>2019-10-08T21:14:09Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=f18976136625a7d016e97bfd9eabddf640b3e06d'/>
<id>urn:sha1:f18976136625a7d016e97bfd9eabddf640b3e06d</id>
<content type='text'>
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>
</feed>
