diff options
author | jkh <jkh@FreeBSD.org> | 1996-04-24 21:20:17 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1996-04-24 21:20:17 +0000 |
commit | 43a1e330ac7867511e8793190eee58f5ffa26001 (patch) | |
tree | 5589c9a89a546acb97ecf52ba7443f3b3b1ec78a /gnu | |
parent | d88ab4bed7f2b51e29ecc41459ace7ae56b707a3 (diff) | |
download | FreeBSD-src-43a1e330ac7867511e8793190eee58f5ffa26001.zip FreeBSD-src-43a1e330ac7867511e8793190eee58f5ffa26001.tar.gz |
Change "Found end of tape. Load next tape ..." messages to say
"volume" instead of tape. Running cpio off of /dev/fd0 and having
it say "give me the next tape" is kind of ludicrous.. :-)
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/cpio/util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/cpio/util.c b/gnu/usr.bin/cpio/util.c index e2e1c1e..7204af7 100644 --- a/gnu/usr.bin/cpio/util.c +++ b/gnu/usr.bin/cpio/util.c @@ -784,9 +784,9 @@ get_next_reel (tape_des) fprintf (tty_out, "%s%d%s", new_media_message_with_number, reel_number, new_media_message_after_number); else if (archive_name) - fprintf (tty_out, "Found end of tape. Load next tape and press RETURN. "); + fprintf (tty_out, "Found end of volume. Load next volume and press RETURN. "); else - fprintf (tty_out, "Found end of tape. To continue, type device/file name when ready.\n"); + fprintf (tty_out, "Found end of volume. To continue, type device/file name when ready.\n"); fflush (tty_out); |