<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/usr.bin/tn3270, branch main</title>
<subtitle>FreeBSD source tree</subtitle>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/'/>
<entry>
<title>FreeBSD District court of Appeals - TN3270 vs Ports</title>
<updated>1999-08-31T08:55:39+00:00</updated>
<author>
<name>Mark Murray</name>
<email>markm@FreeBSD.org</email>
</author>
<published>1999-08-31T08:55:39+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=8e831169b9417412b5105ebb23ed7fb68adc25dc'/>
<id>8e831169b9417412b5105ebb23ed7fb68adc25dc</id>
<content type='text'>
Judge:		TN3270, you are charged with being superfluous to
		requirement, and have been found guilty.
		Defence, do you have any final words?
Defence lawyer:	Yes,..
		*!BLAM!*
Judge:		Contempt of court!! That blood is disgusting! Sergeant?
Sergeant:	Sah!?
Judge:		Get that mess out of here.
Sergeant:	Sah!!
Judge:		Anyone else have anything else to say?
		...
Judge:		Executioner!
Executioner:	My lord?
Judge:		Carry out the sentence, forthwith!
Executioner:	As my lord wishes...
		*!BLAM!* *!BLAM!* *!BLAM!*
Judge:		Any more matters for the court today?
		...
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Judge:		TN3270, you are charged with being superfluous to
		requirement, and have been found guilty.
		Defence, do you have any final words?
Defence lawyer:	Yes,..
		*!BLAM!*
Judge:		Contempt of court!! That blood is disgusting! Sergeant?
Sergeant:	Sah!?
Judge:		Get that mess out of here.
Sergeant:	Sah!!
Judge:		Anyone else have anything else to say?
		...
Judge:		Executioner!
Executioner:	My lord?
Judge:		Carry out the sentence, forthwith!
Executioner:	As my lord wishes...
		*!BLAM!* *!BLAM!* *!BLAM!*
Judge:		Any more matters for the court today?
		...
</pre>
</div>
</content>
</entry>
<entry>
<title>Make this compile..  (Why do we have tn3270 in the tree anyway?)</title>
<updated>1999-08-30T08:23:33+00:00</updated>
<author>
<name>Peter Wemm</name>
<email>peter@FreeBSD.org</email>
</author>
<published>1999-08-30T08:23:33+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=046fbf6fe9b781566150ae73db081095ee42c1a3'/>
<id>046fbf6fe9b781566150ae73db081095ee42c1a3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>$Id$ -&gt; $FreeBSD$</title>
<updated>1999-08-28T01:08:13+00:00</updated>
<author>
<name>Peter Wemm</name>
<email>peter@FreeBSD.org</email>
</author>
<published>1999-08-28T01:08:13+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=c3aac50f284c6cca5b4f2eb46aaa13812cb8b630'/>
<id>c3aac50f284c6cca5b4f2eb46aaa13812cb8b630</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add $Id$, to make it simpler for members of the translation teams to</title>
<updated>1999-07-12T20:24:20+00:00</updated>
<author>
<name>Nik Clayton</name>
<email>nik@FreeBSD.org</email>
</author>
<published>1999-07-12T20:24:20+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=3be5f1f5ce6c92fb28926e7d02f855c12d534c34'/>
<id>3be5f1f5ce6c92fb28926e7d02f855c12d534c34</id>
<content type='text'>
track.

The $Id$ line is normally at the bottom of the main comment block in the
man page, separated from the rest of the manpage by an empty comment,
like so;

     .\"    $Id$
     .\"

If the immediately preceding comment is a @(#) format ID marker than the
the $Id$ will line up underneath it with no intervening blank lines.
Otherwise, an additional blank line is inserted.

Approved by:            bde
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
track.

The $Id$ line is normally at the bottom of the main comment block in the
man page, separated from the rest of the manpage by an empty comment,
like so;

     .\"    $Id$
     .\"

If the immediately preceding comment is a @(#) format ID marker than the
the $Id$ will line up underneath it with no intervening blank lines.
Otherwise, an additional blank line is inserted.

Approved by:            bde
</pre>
</div>
</content>
</entry>
<entry>
<title>More egcs warning fixes:</title>
<updated>1999-04-25T22:37:58+00:00</updated>
<author>
<name>Warner Losh</name>
<email>imp@FreeBSD.org</email>
</author>
<published>1999-04-25T22:37:58+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=96846ff64680fa4945300ede843b93311fea74fc'/>
<id>96846ff64680fa4945300ede843b93311fea74fc</id>
<content type='text'>
	o main returns int not void
	o use return 0 at end of main when needed
	o use braces to avoid potentially ambiguous else
	o don't default to type int
	o #ifdef 0 -&gt; #if 0

Reviewed by: obrien and chuckr
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
	o main returns int not void
	o use return 0 at end of main when needed
	o use braces to avoid potentially ambiguous else
	o don't default to type int
	o #ifdef 0 -&gt; #if 0

Reviewed by: obrien and chuckr
</pre>
</div>
</content>
</entry>
<entry>
<title>Calls one or more of malloc(), warn(), err(), syslog(), execlp() or</title>
<updated>1998-10-13T14:52:33+00:00</updated>
<author>
<name>Dag-Erling Smørgrav</name>
<email>des@FreeBSD.org</email>
</author>
<published>1998-10-13T14:52:33+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=1fd98d7d880e470809cc3284ef04a03bf3490b02'/>
<id>1fd98d7d880e470809cc3284ef04a03bf3490b02</id>
<content type='text'>
execvp() in the child branch of a vfork(). Changed to use fork()
instead.

Some of these (mv, find, apply, xargs) might benefit greatly from
being rewritten to use vfork() properly.

PR:		Loosely related to bin/8252
Approved by:	jkh and bde
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
execvp() in the child branch of a vfork(). Changed to use fork()
instead.

Some of these (mv, find, apply, xargs) might benefit greatly from
being rewritten to use vfork() properly.

PR:		Loosely related to bin/8252
Approved by:	jkh and bde
</pre>
</div>
</content>
</entry>
<entry>
<title>Make this internal build tool static to avoid trying to use shared</title>
<updated>1998-08-17T11:56:22+00:00</updated>
<author>
<name>John Birrell</name>
<email>jb@FreeBSD.org</email>
</author>
<published>1998-08-17T11:56:22+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=34c2c7717fa49dc4bc2493484d065fa5091d756b'/>
<id>34c2c7717fa49dc4bc2493484d065fa5091d756b</id>
<content type='text'>
libraries before the shared loader has been installed.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
libraries before the shared loader has been installed.
</pre>
</div>
</content>
</entry>
<entry>
<title>Spelling fixes.</title>
<updated>1998-06-10T12:34:27+00:00</updated>
<author>
<name>Poul-Henning Kamp</name>
<email>phk@FreeBSD.org</email>
</author>
<published>1998-06-10T12:34:27+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=1499abeef444e38d4173252b8b0b9b865c182804'/>
<id>1499abeef444e38d4173252b8b0b9b865c182804</id>
<content type='text'>
PR:		6903
Reviewed by:	phk
Submitted by:	Josh Gilliam &lt;josh@quick.net&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
PR:		6903
Reviewed by:	phk
Submitted by:	Josh Gilliam &lt;josh@quick.net&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>$@ is deprecated, use ${.TARGET} instead.  Ditto for other single character</title>
<updated>1998-06-09T04:07:23+00:00</updated>
<author>
<name>Warner Losh</name>
<email>imp@FreeBSD.org</email>
</author>
<published>1998-06-09T04:07:23+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=205a8ea824a04474bbfb000018904cd856cee4f3'/>
<id>205a8ea824a04474bbfb000018904cd856cee4f3</id>
<content type='text'>
$n.
PR:		 conf/3273
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
$n.
PR:		 conf/3273
</pre>
</div>
</content>
</entry>
<entry>
<title>Add usage. Use /usr/share/misc/map3270 instead of /etc/map3270.</title>
<updated>1997-08-18T07:21:48+00:00</updated>
<author>
<name>Philippe Charnier</name>
<email>charnier@FreeBSD.org</email>
</author>
<published>1997-08-18T07:21:48+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=4e9b4d056826705d7bad7a6b348c62e828838d18'/>
<id>4e9b4d056826705d7bad7a6b348c62e828838d18</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
