1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-27 21:29:02 +00:00
freebsd-ports/sysutils/copytape/files/patch-aa
Justin M. Seger 6299cff8f6 Import of copytape 1.0
Copytape duplicates magtapes. It is intended for duplication of
bootable or other non-file-structured (non-tar-structured) magtapes
on systems with only one tape drive. Copytape is blissfully ignorant
of tape formats. It merely makes a bit-for-bit copy of its input.

PR:		ports/8454
Submitted by:	sjr@home.net
1998-12-20 21:14:43 +00:00

21 lines
623 B
Plaintext

--- copytape.c.orig Fri Oct 23 17:23:06 1998
+++ copytape.c Fri Oct 23 17:23:46 1998
@@ -36,7 +36,7 @@
extern int errno;
-#define BUFLEN 262144 /* max tape block size */
+#define BUFLEN (1024*1024) /* max tape block size */
#define TAPE_MARK -100 /* return record length if we read a
* tape mark */
#define END_OF_TAPE -101 /* 2 consecutive tape marks */
@@ -149,7 +149,7 @@
len = input(from);
} while (len > 0);
if (len == FORMAT_ERROR) {
- perror(stderr, "copytape: format error on skip");
+ perror("copytape: format error on skip");
exit(-1);
};
if (len == END_OF_TAPE) {