Skip to content
Snippets Groups Projects
Commit 0f7aedc9 authored by Dennis Waldron's avatar Dennis Waldron Committed by Steven Murray
Browse files

Fixed: #68084: Prevent of segment creation on disk only file classes

parent 75600bcf
Branches
Tags
No related merge requests found
......@@ -206,6 +206,8 @@ char *sys_nserrlist[ENSMAXERR-ENSBASEOFF+2] =
"File has been overwritten, request ignored",
"Segment had been deleted",
"Is a link",
"File class does not allow a copy on tape",
"Too many copies on tape",
"BAD ERROR NUMBER"
};
......
......@@ -210,11 +210,13 @@
* NS (Name Server) errors
*------------------------------------------------------------------------
*/
#define ENSNACT ENSBASEOFF+1 /* Name server not active */
#define ENSFILECHG ENSBASEOFF+2 /* File has been overwritten, request ignored */
#define ENSNOSEG ENSBASEOFF+3 /* Segment had been deleted */
#define ENSISLINK ENSBASEOFF+4 /* Is a link */
#define ENSMAXERR ENSBASEOFF+4
#define ENSNACT ENSBASEOFF+1 /* Name server not active */
#define ENSFILECHG ENSBASEOFF+2 /* File has been overwritten, request ignored */
#define ENSNOSEG ENSBASEOFF+3 /* Segment had been deleted */
#define ENSISLINK ENSBASEOFF+4 /* Is a link */
#define ENSCLASSNOSEGS ENSBASEOFF+5 /* File class does not allow a copy on tape */
#define ENSTOOMANYSEGS ENSBASEOFF+6 /* Too many copies on tape */
#define ENSMAXERR ENSBASEOFF+6
/*
*------------------------------------------------------------------------
......
......@@ -457,6 +457,12 @@ The following error values are returned only by the name server package:
.TP
.B ENSISLINK
(1404) Is a link
.TP
.B ENSCLASSNOSEGS
(1405) File class does not allow a copy on tape
.TP
.B ENSTOOMANYSEGS
(1406) Too many copies on tape
.SH RFIO ERRORS
The following error values are returned only by the remote file I/O package:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment