<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/usr.sbin/fdwrite/fdwrite.c, branch releng/8.0</title>
<subtitle>FreeBSD source tree</subtitle>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/'/>
<entry>
<title>Drop the defunct FDOPT_NOERRLOG option from all the floppy utilities.</title>
<updated>2009-06-24T19:47:53+00:00</updated>
<author>
<name>Joerg Wunsch</name>
<email>joerg@FreeBSD.org</email>
</author>
<published>2009-06-24T19:47:53+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=81f5cd998c10885d9483f90776575f68c50f92b5'/>
<id>81f5cd998c10885d9483f90776575f68c50f92b5</id>
<content type='text'>
The kernel does not log floppy media errors anymore.

In fdcontrol, do always open the file descriptor in read-only mode so
it can operate on read-only media, as there is no longer a separate
control device to operate on.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The kernel does not log floppy media errors anymore.

In fdcontrol, do always open the file descriptor in read-only mode so
it can operate on read-only media, as there is no longer a separate
control device to operate on.
</pre>
</div>
</content>
</entry>
<entry>
<title>Cleanup usr.sbin/fd* so they can compile under WARNS=6.</title>
<updated>2005-01-08T15:46:06+00:00</updated>
<author>
<name>Xin LI</name>
<email>delphij@FreeBSD.org</email>
</author>
<published>2005-01-08T15:46:06+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=4c1f1c62ca07a2fa300a24cb4700980773156eb2'/>
<id>4c1f1c62ca07a2fa300a24cb4700980773156eb2</id>
<content type='text'>
fdcontrol/fdcontrol.c:
	- Add const constraint to an intermediate value
	  which is not supposed to be changed elsewhere.
fdread/fdread.c:
	- Use _devname in favor of devname to avoid name
	  conflicit.
	- -1 is less than any positive number so in order
	  to get the block to function, we should get the
	  block a little earlier.
	- Cast to remove signed when we are sure that a
	  return value is positive, or is compared with
	  an positive number (tracknumber of a floppy
	  disk is not likely to have UINT_MAX/2 anyway)
fdread/fdutil.c:
	- Use more specific initializer
fdwrite/fdwrite.c:
	- Use static on format_track since it's not
	  referenced in other places.
	- Use const char* to represent string constant.

Bump WARNS accordingly.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
fdcontrol/fdcontrol.c:
	- Add const constraint to an intermediate value
	  which is not supposed to be changed elsewhere.
fdread/fdread.c:
	- Use _devname in favor of devname to avoid name
	  conflicit.
	- -1 is less than any positive number so in order
	  to get the block to function, we should get the
	  block a little earlier.
	- Cast to remove signed when we are sure that a
	  return value is positive, or is compared with
	  an positive number (tracknumber of a floppy
	  disk is not likely to have UINT_MAX/2 anyway)
fdread/fdutil.c:
	- Use more specific initializer
fdwrite/fdwrite.c:
	- Use static on format_track since it's not
	  referenced in other places.
	- Use const char* to represent string constant.

Bump WARNS accordingly.
</pre>
</div>
</content>
</entry>
<entry>
<title>Include &lt;string.h&gt; rather than &lt;strings.h&gt; for string function prototypes.</title>
<updated>2004-05-30T08:59:10+00:00</updated>
<author>
<name>Stefan Farfeleder</name>
<email>stefanf@FreeBSD.org</email>
</author>
<published>2004-05-30T08:59:10+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=2e3cf2039be7e6e6117349a11c7b24d944f348f4'/>
<id>2e3cf2039be7e6e6117349a11c7b24d944f348f4</id>
<content type='text'>
Approved by:	das (mentor)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Approved by:	das (mentor)
</pre>
</div>
</content>
</entry>
<entry>
<title>Modernize my email address</title>
<updated>2002-03-25T13:53:46+00:00</updated>
<author>
<name>Poul-Henning Kamp</name>
<email>phk@FreeBSD.org</email>
</author>
<published>2002-03-25T13:53:46+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=06229ad2af0790512e7676f99344b1fff70fea5b'/>
<id>06229ad2af0790512e7676f99344b1fff70fea5b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Now that we've got it, use FDOPT_NOERRLOG for fdformat and fdwrite to</title>
<updated>2001-06-26T22:19:32+00:00</updated>
<author>
<name>Joerg Wunsch</name>
<email>joerg@FreeBSD.org</email>
</author>
<published>2001-06-26T22:19:32+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=a5cef3b45a87082084071275f7c5a1c584a79066'/>
<id>a5cef3b45a87082084071275f7c5a1c584a79066</id>
<content type='text'>
avoid blasting the syslog with error messages from bad floppies.  Both
tools have their own error reporting anyway (which could easily be
cluttered by the syslog output on your terminal).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
avoid blasting the syslog with error messages from bad floppies.  Both
tools have their own error reporting anyway (which could easily be
cluttered by the syslog output on your terminal).
</pre>
</div>
</content>
</entry>
<entry>
<title>Part #2 of the &lt;machine/ioctl_fd.h&gt; =&gt; &lt;sys/fdcio.h&gt; move: handle the</title>
<updated>2001-06-06T06:16:19+00:00</updated>
<author>
<name>Joerg Wunsch</name>
<email>joerg@FreeBSD.org</email>
</author>
<published>2001-06-06T06:16:19+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=d137c337aeae921a004038a73002967689919b06'/>
<id>d137c337aeae921a004038a73002967689919b06</id>
<content type='text'>
tools in usr.sbin/fd*.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
tools in usr.sbin/fd*.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add `_PATH_DEVZERO'.</title>
<updated>2000-12-09T09:35:55+00:00</updated>
<author>
<name>David E. O'Brien</name>
<email>obrien@FreeBSD.org</email>
</author>
<published>2000-12-09T09:35:55+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=1a37aa566b347fbb2d2196786e1e84a79ffea9d5'/>
<id>1a37aa566b347fbb2d2196786e1e84a79ffea9d5</id>
<content type='text'>
Use _PATH_* where where possible.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use _PATH_* where where possible.
</pre>
</div>
</content>
</entry>
<entry>
<title>/dev/r&lt;FOO&gt; =&gt; /dev/&lt;FOO&gt;</title>
<updated>2000-04-26T11:52:44+00:00</updated>
<author>
<name>David E. O'Brien</name>
<email>obrien@FreeBSD.org</email>
</author>
<published>2000-04-26T11:52:44+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=6ed16f20c3b43be03ac2988580f22e8977aa7c94'/>
<id>6ed16f20c3b43be03ac2988580f22e8977aa7c94</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:35:59+00:00</updated>
<author>
<name>Peter Wemm</name>
<email>peter@FreeBSD.org</email>
</author>
<published>1999-08-28T01:35:59+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=97d92980a96a50750844f420cc225ddf918f0699'/>
<id>97d92980a96a50750844f420cc225ddf918f0699</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use err(3). Document -y flag. Remove unused -s flag from getopt string.</title>
<updated>1997-09-18T06:35:51+00:00</updated>
<author>
<name>Philippe Charnier</name>
<email>charnier@FreeBSD.org</email>
</author>
<published>1997-09-18T06:35:51+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=d682bccf28c11cda69d1f7ab3530e5e1d4fec3a6'/>
<id>d682bccf28c11cda69d1f7ab3530e5e1d4fec3a6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
