<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/usr.bin/mail/fio.c, branch release/6.0.0_cvs</title>
<subtitle>FreeBSD source tree</subtitle>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/'/>
<entry>
<title>This commit was manufactured by cvs2svn to create tag</title>
<updated>2005-11-03T00:35:26+00:00</updated>
<author>
<name>cvs2svn</name>
<email>cvs2svn@FreeBSD.org</email>
</author>
<published>2005-11-03T00:35:26+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=3640cb54210edbb7edbf1b12ef0127ecfcea967d'/>
<id>3640cb54210edbb7edbf1b12ef0127ecfcea967d</id>
<content type='text'>
'RELENG_6_0_0_RELEASE'.

This commit was manufactured to restore the state of the 6.0-RELEASE image.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
'RELENG_6_0_0_RELEASE'.

This commit was manufactured to restore the state of the 6.0-RELEASE image.
</pre>
</div>
</content>
</entry>
<entry>
<title>Consistently use FBSDID</title>
<updated>2002-06-30T05:25:07+00:00</updated>
<author>
<name>David E. O'Brien</name>
<email>obrien@FreeBSD.org</email>
</author>
<published>2002-06-30T05:25:07+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=e026a48c34d396fe7d0e382673a69bc047c0bfca'/>
<id>e026a48c34d396fe7d0e382673a69bc047c0bfca</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add (unsigned char) cast to ctype macros</title>
<updated>2001-12-19T21:50:22+00:00</updated>
<author>
<name>Andrey A. Chernov</name>
<email>ache@FreeBSD.org</email>
</author>
<published>2001-12-19T21:50:22+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=6d48fa438787d4171b4023215a25a490db1bb389'/>
<id>6d48fa438787d4171b4023215a25a490db1bb389</id>
<content type='text'>
ftell-&gt;ftello, fseek-&gt;fseeko
File 'newsize' type int-&gt;off_t
Add visible (long) cast to fsize() when it called to small one message file and
result is assigned to long.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
ftell-&gt;ftello, fseek-&gt;fseeko
File 'newsize' type int-&gt;off_t
Add visible (long) cast to fsize() when it called to small one message file and
result is assigned to long.
</pre>
</div>
</content>
</entry>
<entry>
<title>Sync with most of NetBSD's changes, including:</title>
<updated>2001-12-18T20:52:09+00:00</updated>
<author>
<name>Mike Heffner</name>
<email>mikeh@FreeBSD.org</email>
</author>
<published>2001-12-18T20:52:09+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=856f23ed359b1138dbb07532a81dc83328b85941'/>
<id>856f23ed359b1138dbb07532a81dc83328b85941</id>
<content type='text'>
 *) Sync with 4.4BSD-Lite2
 *) Set usecs for utimes()
 *) Add 'inc' command and 'autoinc' option that check for new mail
    manually and automatically, respectively
 *) Use POSIX signal handling and tty semantics
 *) Handle long lines correctly when paging messages
 *) Add ability to explicitly search 'To:' line
 *) Various manpage cleanups
 *) Support overriding '~/.mailrc' with $MAILRC
 *) Support 'askbcc' and 'asksub' options
 *) Fix various bugs

Reviewed by:	ru (mail.1)
Obtained from:	NetBSD
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 *) Sync with 4.4BSD-Lite2
 *) Set usecs for utimes()
 *) Add 'inc' command and 'autoinc' option that check for new mail
    manually and automatically, respectively
 *) Use POSIX signal handling and tty semantics
 *) Handle long lines correctly when paging messages
 *) Add ability to explicitly search 'To:' line
 *) Various manpage cleanups
 *) Support overriding '~/.mailrc' with $MAILRC
 *) Support 'askbcc' and 'asksub' options
 *) Fix various bugs

Reviewed by:	ru (mail.1)
Obtained from:	NetBSD
</pre>
</div>
</content>
</entry>
<entry>
<title>File positions are off_t nowdays, not long, so:</title>
<updated>2001-09-02T14:40:51+00:00</updated>
<author>
<name>Andrey A. Chernov</name>
<email>ache@FreeBSD.org</email>
</author>
<published>2001-09-02T14:40:51+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=af8c32621d9da465c26eac96e2399581a6b980cb'/>
<id>af8c32621d9da465c26eac96e2399581a6b980cb</id>
<content type='text'>
    fseek -&gt; fseeko
    ftell -&gt; ftello

    NOTE: fseek/ftell not works for &gt;long offsets per POSIX:

    [EOVERFLOW] For fseek( ), the resulting file offset would be a value which
    cannot be represented correctly in an object of type long.

    [EOVERFLOW] For ftell ( ), the current file offset cannot be represented
    correctly in an object of type long.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
    fseek -&gt; fseeko
    ftell -&gt; ftello

    NOTE: fseek/ftell not works for &gt;long offsets per POSIX:

    [EOVERFLOW] For fseek( ), the resulting file offset would be a value which
    cannot be represented correctly in an object of type long.

    [EOVERFLOW] For ftell ( ), the current file offset cannot be represented
    correctly in an object of type long.
</pre>
</div>
</content>
</entry>
<entry>
<title>Handle snprintf() returning -1.</title>
<updated>2001-08-20T14:46:40+00:00</updated>
<author>
<name>Brian Somers</name>
<email>brian@FreeBSD.org</email>
</author>
<published>2001-08-20T14:46:40+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=cbe1d3b6307020778153ec838f67bbcd9f5b46b0'/>
<id>cbe1d3b6307020778153ec838f67bbcd9f5b46b0</id>
<content type='text'>
MFC after:	2 weeks
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
MFC after:	2 weeks
</pre>
</div>
</content>
</entry>
<entry>
<title>Removed duplicate VCS ID tags, as per style(9).</title>
<updated>2001-08-13T14:06:34+00:00</updated>
<author>
<name>Ruslan Ermilov</name>
<email>ru@FreeBSD.org</email>
</author>
<published>2001-08-13T14:06:34+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=8af1452cf8dd1b33da881f84e445d5981eaa9613'/>
<id>8af1452cf8dd1b33da881f84e445d5981eaa9613</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Cleanup mail(1)'s varying styles by converting to using style(9).</title>
<updated>2001-05-27T20:26:22+00:00</updated>
<author>
<name>Mike Heffner</name>
<email>mikeh@FreeBSD.org</email>
</author>
<published>2001-05-27T20:26:22+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=9ce73e901878324070d0420a285d144d5acffe2d'/>
<id>9ce73e901878324070d0420a285d144d5acffe2d</id>
<content type='text'>
Also take a stab at cleaning up BDECFLAGS and convert all uses of
NOSTR, NIL, NONE, NOVAR, NOGRP, NOGE to NULL. Also kill 'register' to
get diffs somewhat closer to OpenBSD/NetBSD.

There are no functional changes however.
Reviewed by:	nra (visual inspection)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also take a stab at cleaning up BDECFLAGS and convert all uses of
NOSTR, NIL, NONE, NOVAR, NOGRP, NOGE to NULL. Also kill 'register' to
get diffs somewhat closer to OpenBSD/NetBSD.

There are no functional changes however.
Reviewed by:	nra (visual inspection)
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow mail(1) to be able to read Eudora mailboxes by transforming</title>
<updated>2001-05-11T03:07:11+00:00</updated>
<author>
<name>Mike Heffner</name>
<email>mikeh@FreeBSD.org</email>
</author>
<published>2001-05-11T03:07:11+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=afa3a100e9ce3215c52b0c7e907a4229f46d8df2'/>
<id>afa3a100e9ce3215c52b0c7e907a4229f46d8df2</id>
<content type='text'>
lines that end in &lt;CR&gt;&lt;LF&gt; to just &lt;LF&gt;.

Reviewed by:	imp
Obtained from:	OpenBSD
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
lines that end in &lt;CR&gt;&lt;LF&gt; to just &lt;LF&gt;.

Reviewed by:	imp
Obtained from:	OpenBSD
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge various changes from OpenBSD and NetBSD.</title>
<updated>2001-03-25T04:57:05+00:00</updated>
<author>
<name>Mike Heffner</name>
<email>mikeh@FreeBSD.org</email>
</author>
<published>2001-03-25T04:57:05+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=0c3a8314c00f58f16823e8cd6186757d5e8bcdcc'/>
<id>0c3a8314c00f58f16823e8cd6186757d5e8bcdcc</id>
<content type='text'>
o remove panic() in favor of err(3) and use err(3) functions
  consistently throughout
o use stat(2)'s S_IS* macros rather than S_IF*
o [r]index -&gt; str[r]chr
o convert some static buffers to dynamic ones
o use real tempfiles rather than reopening the same templates
o rename some functions that clash with libc
o convert wait_status from union to int and use wait(2) status macros
o fix multiple potential buffer overflows
o fix a few comments
o add $FreeBSD$

Reviewed by:	nra, nectar (earlier version)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
o remove panic() in favor of err(3) and use err(3) functions
  consistently throughout
o use stat(2)'s S_IS* macros rather than S_IF*
o [r]index -&gt; str[r]chr
o convert some static buffers to dynamic ones
o use real tempfiles rather than reopening the same templates
o rename some functions that clash with libc
o convert wait_status from union to int and use wait(2) status macros
o fix multiple potential buffer overflows
o fix a few comments
o add $FreeBSD$

Reviewed by:	nra, nectar (earlier version)
</pre>
</div>
</content>
</entry>
</feed>
