From 9bef7c0136ba2ed59a50715ad48c304dc5ebdfb1 Mon Sep 17 00:00:00 2001 From: obrien Date: Wed, 26 Apr 2000 11:52:44 +0000 Subject: /dev/r => /dev/ --- usr.sbin/fdwrite/fdwrite.1 | 4 ++-- usr.sbin/fdwrite/fdwrite.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'usr.sbin/fdwrite') diff --git a/usr.sbin/fdwrite/fdwrite.1 b/usr.sbin/fdwrite/fdwrite.1 index cdaa7de..245818b 100644 --- a/usr.sbin/fdwrite/fdwrite.1 +++ b/usr.sbin/fdwrite/fdwrite.1 @@ -58,7 +58,7 @@ is useful for shell scripts. Input file to read. If none is given, stdin is assumed. .It Fl d Ar device The name of the floppy device to write to. Default is -.Pa /dev/rfd0 . +.Pa /dev/fd0 . .El .Nm Fdwrite @@ -81,7 +81,7 @@ was planned as a tool to make life easier when writing a set of floppies, one such use could be to write a tar-archive: .ce 1 -tar cf - . | gzip -9 | fdwrite -d /dev/rfd0.1720 -v +tar cf - . | gzip -9 | fdwrite -d /dev/fd0.1720 -v The main difference from using .Xr tar 1 's diff --git a/usr.sbin/fdwrite/fdwrite.c b/usr.sbin/fdwrite/fdwrite.c index f9f76a8..4ab858e 100644 --- a/usr.sbin/fdwrite/fdwrite.c +++ b/usr.sbin/fdwrite/fdwrite.c @@ -66,7 +66,7 @@ main(int argc, char **argv) int inputfd = -1, c, fdn = 0, i,j,fd; int bpt, verbose=1, nbytes=0, track; int interactive = 1; - char *device= "/dev/rfd0", *trackbuf = 0,*vrfybuf = 0; + char *device= "/dev/fd0", *trackbuf = 0,*vrfybuf = 0; struct fd_type fdt; FILE *tty; -- cgit v1.1