<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src-test2/libexec/ftpd, branch release/5.2.0_cvs</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src-test2/atom?h=release%2F5.2.0_cvs</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src-test2/atom?h=release%2F5.2.0_cvs'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/'/>
<updated>2004-01-10T05:53:29Z</updated>
<entry>
<title>This commit was manufactured by cvs2svn to create tag</title>
<updated>2004-01-10T05:53:29Z</updated>
<author>
<name>cvs2svn</name>
<email>cvs2svn@FreeBSD.org</email>
</author>
<published>2004-01-10T05:53:29Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=58c9ff44c8041f394c663cb9640e9b77fe07bb13'/>
<id>urn:sha1:58c9ff44c8041f394c663cb9640e9b77fe07bb13</id>
<content type='text'>
'RELENG_5_2_0_RELEASE'.

This commit was manufactured to restore the state of the 5.2-RELEASE image.
Releases prior to 5.3-RELEASE are omitting the secure/ and crypto/ subdirs.
</content>
</entry>
<entry>
<title>If a file to send in ASCII mode already has CRLF as end-of-line,</title>
<updated>2003-11-15T11:08:26Z</updated>
<author>
<name>Yaroslav Tykhiy</name>
<email>ytykhiy@gmail.com</email>
</author>
<published>2003-11-15T11:08:26Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=db1c2da3344070dd8e34136a90134ee72d254b63'/>
<id>urn:sha1:db1c2da3344070dd8e34136a90134ee72d254b63</id>
<content type='text'>
don't add excessive CR on the wire.

PR:		bin/59285
Submitted by:	Andrey Beresovsky &lt;and at rsu.ru&gt;
MFC after:	1 week
</content>
</entry>
<entry>
<title>Pacify gcc warning with a Douglas Adams reference.</title>
<updated>2003-10-26T04:30:05Z</updated>
<author>
<name>Peter Wemm</name>
<email>peter@FreeBSD.org</email>
</author>
<published>2003-10-26T04:30:05Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=45ffe5605f3c9e78a4737c0ea7513488c3b250b9'/>
<id>urn:sha1:45ffe5605f3c9e78a4737c0ea7513488c3b250b9</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Don't depend on IPv4-mapped IPv6 address to bind to both IPv4</title>
<updated>2003-09-14T16:42:46Z</updated>
<author>
<name>Hajimu UMEMOTO</name>
<email>ume@FreeBSD.org</email>
</author>
<published>2003-09-14T16:42:46Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=206fe568bfd8dad15d4810f0811dc721c77a2a03'/>
<id>urn:sha1:206fe568bfd8dad15d4810f0811dc721c77a2a03</id>
<content type='text'>
and IPv6.

Wrote at:	Hakone.
Powered by:	Warner Losh's scotch whisky.
Requested by:	nork
</content>
</entry>
<entry>
<title>Eliminate last three uses of varargs.h in the tree. These three files</title>
<updated>2003-09-01T04:12:18Z</updated>
<author>
<name>Alexander Kabaev</name>
<email>kan@FreeBSD.org</email>
</author>
<published>2003-09-01T04:12:18Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=84c0a482499490d5f27b1399d9ac7ed0e059e0ca'/>
<id>urn:sha1:84c0a482499490d5f27b1399d9ac7ed0e059e0ca</id>
<content type='text'>
were including varargs.h file but did not use any of its macros,
so they escaped the clean-up before.
</content>
</entry>
<entry>
<title>Add a note that the -u option can be overridden by settings in login.conf(5).</title>
<updated>2003-08-31T07:45:48Z</updated>
<author>
<name>Ceri Davies</name>
<email>ceri@FreeBSD.org</email>
</author>
<published>2003-08-31T07:45:48Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=a707b683e749b30a96a509f833274eeaa0ed135a'/>
<id>urn:sha1:a707b683e749b30a96a509f833274eeaa0ed135a</id>
<content type='text'>
PR:		docs/56017
Submitted by:	Josef El-Rayes &lt;j.el-rayes@daemon.li&gt;
</content>
</entry>
<entry>
<title>Block SIGURG while reading from the control channel.</title>
<updated>2003-07-09T13:54:33Z</updated>
<author>
<name>Yaroslav Tykhiy</name>
<email>ytykhiy@gmail.com</email>
</author>
<published>2003-07-09T13:54:33Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=e25d3184d0d926dd5a2cf7803c15da7b377814af'/>
<id>urn:sha1:e25d3184d0d926dd5a2cf7803c15da7b377814af</id>
<content type='text'>
Rationale:

SIGURG is configured by ftpd to interrupt system calls, which is useful
during data transfers.  However, SIGURG could interrupt I/O on the
control channel as well, which was mistaken for the end of the session.

A practical example could be aborting the download of a tiny file,
when the abort sequence reached ftpd after ftpd had passed the file
data to the system and returned to its command loop.

Reported by:	ceri
MFC after:	1 week
</content>
</entry>
<entry>
<title>Improve error handling in getline():</title>
<updated>2003-07-09T13:15:32Z</updated>
<author>
<name>Yaroslav Tykhiy</name>
<email>ytykhiy@gmail.com</email>
</author>
<published>2003-07-09T13:15:32Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=39b96ba75d7bfc29f121f222416f72ac1d94127b'/>
<id>urn:sha1:39b96ba75d7bfc29f121f222416f72ac1d94127b</id>
<content type='text'>
- always check the return value from getc(3) for EOF;
- if the attempt to read the TELNET command byte has
  returned EOF, exit from the loop instead of using
  the EOF value as a normal character.

MFC after:	1 week
</content>
</entry>
<entry>
<title>Make a malloced copy of "chrootdir" even if it points to an absolute</title>
<updated>2003-07-09T12:46:24Z</updated>
<author>
<name>Yaroslav Tykhiy</name>
<email>ytykhiy@gmail.com</email>
</author>
<published>2003-07-09T12:46:24Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=39bce482456d2b9402e277fc4b5251f288234aa5'/>
<id>urn:sha1:39bce482456d2b9402e277fc4b5251f288234aa5</id>
<content type='text'>
pathname inside "residue" so "chrootdir" can be simply freed later.

PR:		bin/53435
Submitted by:	Yutaka Ishihara &lt;yutaka at fandc.co.jp&gt;
MFC after:	1 week
</content>
</entry>
<entry>
<title>Don't declare unneeded extern variables,</title>
<updated>2003-06-21T10:45:38Z</updated>
<author>
<name>Yaroslav Tykhiy</name>
<email>ytykhiy@gmail.com</email>
</author>
<published>2003-06-21T10:45:38Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=9581ecbd7205a1cf27330bd3971a5e24535a8877'/>
<id>urn:sha1:9581ecbd7205a1cf27330bd3971a5e24535a8877</id>
<content type='text'>
leave alone specifying a wrong type for one of them.
</content>
</entry>
</feed>
