Skip to content
Snippets Groups Projects
Commit 3d3af51a authored by Steven Murray's avatar Steven Murray Committed by Steven Murray
Browse files

bug #101536: The tapebridged daemon does not handle zero length files for migration correctly.

Added the new serrno number "ETSESSIONERROR (1938) Tape session error".
parent b29eb80b
No related branches found
No related tags found
No related merge requests found
......@@ -332,6 +332,7 @@ char *sys_terrlist[ETMAXERR-ETBASEOFF+2] =
"Label information not found in memory",
"Multi-drive reservations are not supported",
"No memory available for label information",
"Tape session error",
"BAD ERROR NUMBER"
};
......
......@@ -337,7 +337,8 @@
#define ETNOLBLINFO ETBASEOFF+35 /* Label information not found in memory */
#define ETMLTDRVRSV ETBASEOFF+36 /* Multi-drive reservations are not supported */
#define ETNOLBLINFOMEM ETBASEOFF+37 /* No memory available for label information */
#define ETMAXERR ETBASEOFF+37
#define ETSESSIONERROR ETBASEOFF+38 /* Tape session error */
#define ETMAXERR ETBASEOFF+38
/*
*------------------------------------------------------------------------
......
......@@ -722,6 +722,9 @@ The following error values are returned only by the tape package:
.TP
.B ETNOLBLINFOMEM
(1937) No memory available for label information
.TP
.B ETSESSIONERROR
(1938) Tape session error
.SH VMGR ERRORS
The following error values are returned only by the volume manager package:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment